This commit is contained in:
Santiago Lo Coco 2022-12-20 16:01:35 -03:00
parent 32d3c1b9a0
commit 651ee97a64
2 changed files with 3 additions and 10 deletions

View File

@ -3,6 +3,7 @@ from dotenv import load_dotenv
from bsition.backend.elastic.utils import create_index
from bsition.backend.postgres.tables import create_filter, create_sort
from bsition.backend.postgres.users import create_user_table
from bsition.backend.postgres.relations import create_relations_tables
def configure():
@ -11,3 +12,4 @@ def configure():
create_filter()
create_sort()
create_index("test-index")
create_relations_tables()

View File

@ -23,22 +23,13 @@ def create_relations_tables():
"""
CREATE TABLE doc_access (
user_id INTEGER REFERENCES users(id),
doc_id INTEGER,
doc_id TEXT,
access_type INTEGER CHECK (access_type IN (1, 2, 3)),
PRIMARY KEY (user_id, doc_id)
)
"""
)
)
cur.execute(
sql.SQL(
"""
CREATE TABLE public_docs (
doc_id INTEGER PRIMARY KEY
)
"""
)
)
conn.commit()