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.
2 parents 39ca158 + c345412 commit 07addb8Copy full SHA for 07addb8
server/db/schema/users_temp.sql
@@ -0,0 +1,8 @@
1
+CREATE TABLE users (
2
+ id INT PRIMARY KEY UNIQUE NOT NULL DEFAULT nextval('user_id_seq'),
3
+ first_name VARCHAR(256) NOT NULL,
4
+ last_name VARCHAR(256) NOT NULL,
5
+ email VARCHAR(256) UNIQUE NOT NULL,
6
+ firebase_uid VARCHAR(128) UNIQUE NOT NULL,
7
+ edit_perms BOOL DEFAULT FALSE
8
+);
0 commit comments