diff --git a/src/db_utils/db_creation.py b/src/db_utils/db_creation.py index 16c038050c96777471b73993281f914200ff5e66..0a8ba1b661ad9b6ab0f861cc1df2e92de50118f7 100755 --- a/src/db_utils/db_creation.py +++ b/src/db_utils/db_creation.py @@ -120,7 +120,7 @@ def create_cin_exon_interaction_table(conn: sqlite3.Connection) -> None: c = conn.cursor() c.execute('''CREATE TABLE IF NOT EXISTS cin_exon_interaction ([id] INT NOT NULL, - [force] INT NOT NULL, + [weight] INT NOT NULL, [exon1] VARCHAR(30) NOT NULL, [exon2] VARCHAR(30) NOT NULL, [id_project] INT NOT NULL, @@ -141,7 +141,7 @@ def create_cin_gene_interaction_table(conn: sqlite3.Connection) -> None: c = conn.cursor() c.execute('''CREATE TABLE IF NOT EXISTS cin_gene_interaction ([id] INT NOT NULL, - [force] INT NOT NULL, + [weight] INT NOT NULL, [gene1] INT NOT NULL, [gene2] INT NOT NULL, [id_project] INT NOT NULL,