diff --git a/server/migrations/0010.sql b/server/migrations/0010.sql new file mode 100644 index 0000000..63502f8 --- /dev/null +++ b/server/migrations/0010.sql @@ -0,0 +1,7 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE IF NOT EXISTS users ( + id SERIAL PRIMARY KEY, + username VARCHAR(255) NOT NULL, + password VARCHAR(255) NOT NULL +); \ No newline at end of file