We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5d4d29 commit 2d3985eCopy full SHA for 2d3985e
db/schema.sql
@@ -1,3 +1,5 @@
1
+
2
3
-- Drop tables in reverse order of creation to handle dependencies
4
DROP TABLE IF EXISTS cell_variations CASCADE;
5
DROP TABLE IF EXISTS evolution_runs CASCADE;
@@ -8,6 +10,7 @@ DROP TABLE IF EXISTS notebooks CASCADE;
8
10
DROP TABLE IF EXISTS problem_statements CASCADE;
9
11
DROP TABLE IF EXISTS users CASCADE;
12
13
14
CREATE TABLE IF NOT EXISTS users (
15
id UUID PRIMARY KEY,
16
username TEXT NOT NULL,
@@ -17,6 +20,7 @@ CREATE TABLE IF NOT EXISTS users (
17
20
acc_status TEXT NOT NULL
18
21
);
19
22
23
24
CREATE TABLE IF NOT EXISTS problem_statements (
25
26
title TEXT NOT NULL,
0 commit comments