summaryrefslogtreecommitdiff
path: root/SCHEMA.sql
diff options
context:
space:
mode:
authorMikko Portti <mportti2@local>2023-11-16 00:29:31 +0200
committerMikko Portti <mportti2@local>2023-11-16 00:29:31 +0200
commit93a927b130ba09cea29aba2077848f785ac48844 (patch)
tree05c7ae4b7df861e1efd03637c9f0cb6c45787d4b /SCHEMA.sql
parent92b368c3486fd20e550a2ec7b8e7717f7e061c96 (diff)
Fixing navigation on site in case of redirect
Diffstat (limited to 'SCHEMA.sql')
-rw-r--r--SCHEMA.sql5
1 files changed, 5 insertions, 0 deletions
diff --git a/SCHEMA.sql b/SCHEMA.sql
new file mode 100644
index 0000000..1c5c372
--- /dev/null
+++ b/SCHEMA.sql
@@ -0,0 +1,5 @@
+CREATE TABLE users (
+ id SERIAL PRIMARY KEY,
+ nick TEXT,
+ created INT
+);