Added a data entry system at /groups-add

This commit is contained in:
a-ill
2023-07-20 00:15:12 +03:00
parent 4fd0a23b8f
commit 1afca45d4b
55 changed files with 10348 additions and 228 deletions

View File

@@ -1,6 +1,6 @@
module DatabaseSupport
#=
using SearchLight, SearchLightPostgreSQL, LibPQ
using DataFrames
@@ -133,5 +133,5 @@ function add_foreign_key(table,name,table2,name2)
ADD CONSTRAINT fk_$(table)_$(table2)_$(name) FOREIGN KEY ($name) REFERENCES $table2 ($name2);"""
SearchLight.query(query)
end
=#
end