summaryrefslogtreecommitdiff
path: root/TABLES
diff options
context:
space:
mode:
authorMarkku Okkonen <mokkonen@local>2023-11-10 15:06:45 +0200
committerMarkku Okkonen <mokkonen@local>2023-11-10 15:06:45 +0200
commit8128427a1d667f62ce4888fe2921ca12b6823deb (patch)
treed24c9f58e3980bc49ca45fece0cceffe9baa3b5d /TABLES
parentfcb6ffc64fa8cf3b57d5960fb75d10107b346e46 (diff)
Database basics and initial workings of nick registeration
Diffstat (limited to 'TABLES')
-rw-r--r--TABLES5
1 files changed, 5 insertions, 0 deletions
diff --git a/TABLES b/TABLES
new file mode 100644
index 0000000..1c5c372
--- /dev/null
+++ b/TABLES
@@ -0,0 +1,5 @@
+CREATE TABLE users (
+ id SERIAL PRIMARY KEY,
+ nick TEXT,
+ created INT
+);