Spaces:
Running
Running
init testing schema file
Browse files- schema.sql +8 -0
schema.sql
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
CREATE TABLE users (
|
2 |
+
id SERIAL PRIMARY KEY,
|
3 |
+
name TEXT,
|
4 |
+
age INT,
|
5 |
+
email TEXT,
|
6 |
+
password TEXT,
|
7 |
+
province TEXT
|
8 |
+
);
|