Add database

This commit is contained in:
2024-08-22 18:21:37 +02:00
parent fb8d9b450e
commit 8b3de3291e
3 changed files with 77 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
CREATE TABLE `users`
(
`id` integer PRIMARY KEY NOT NULL,
`name` text DEFAULT '',
`email` text DEFAULT '',
`created_at` text DEFAULT (CURRENT_DATE)
);