Skip to content
Snippets Groups Projects
Commit db395d65 authored by alapendr's avatar alapendr
Browse files

db_creation.py: update varchar numbers for projects table

parent cd664ff4
No related branches found
No related tags found
No related merge requests found
......@@ -62,10 +62,10 @@ def create_cin_projects_table(conn: sqlite3.Connection) -> None:
c = conn.cursor()
c.execute('''CREATE TABLE IF NOT EXISTS cin_projects
([id] INT NOT NULL,
[id_sample] VARCHAR(45) NOT NULL,
[id_sample] VARCHAR(60) NOT NULL,
[id_project] VARCHAR(45) NOT NULL,
[database] VARCHAR(45) NOT NULL,
[name] VARCHAR(45) NULL,
[name] VARCHAR(60) NULL,
[description] TEXT NULL,
[antiboby] VARCHAR(45) NOT NULL,
[cell_line] VARCHAR(45) NOT NULL,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment