Fix typo
This commit is contained in:
parent
32d3c1b9a0
commit
651ee97a64
|
@ -3,6 +3,7 @@ from dotenv import load_dotenv
|
||||||
from bsition.backend.elastic.utils import create_index
|
from bsition.backend.elastic.utils import create_index
|
||||||
from bsition.backend.postgres.tables import create_filter, create_sort
|
from bsition.backend.postgres.tables import create_filter, create_sort
|
||||||
from bsition.backend.postgres.users import create_user_table
|
from bsition.backend.postgres.users import create_user_table
|
||||||
|
from bsition.backend.postgres.relations import create_relations_tables
|
||||||
|
|
||||||
|
|
||||||
def configure():
|
def configure():
|
||||||
|
@ -11,3 +12,4 @@ def configure():
|
||||||
create_filter()
|
create_filter()
|
||||||
create_sort()
|
create_sort()
|
||||||
create_index("test-index")
|
create_index("test-index")
|
||||||
|
create_relations_tables()
|
||||||
|
|
|
@ -23,22 +23,13 @@ def create_relations_tables():
|
||||||
"""
|
"""
|
||||||
CREATE TABLE doc_access (
|
CREATE TABLE doc_access (
|
||||||
user_id INTEGER REFERENCES users(id),
|
user_id INTEGER REFERENCES users(id),
|
||||||
doc_id INTEGER,
|
doc_id TEXT,
|
||||||
access_type INTEGER CHECK (access_type IN (1, 2, 3)),
|
access_type INTEGER CHECK (access_type IN (1, 2, 3)),
|
||||||
PRIMARY KEY (user_id, doc_id)
|
PRIMARY KEY (user_id, doc_id)
|
||||||
)
|
)
|
||||||
"""
|
"""
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
cur.execute(
|
|
||||||
sql.SQL(
|
|
||||||
"""
|
|
||||||
CREATE TABLE public_docs (
|
|
||||||
doc_id INTEGER PRIMARY KEY
|
|
||||||
)
|
|
||||||
"""
|
|
||||||
)
|
|
||||||
)
|
|
||||||
conn.commit()
|
conn.commit()
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue