Files
arthome/server/database/migrations/0000_salty_thena.sql
2024-08-22 18:21:37 +02:00

8 lines
186 B
SQL

CREATE TABLE `users`
(
`id` integer PRIMARY KEY NOT NULL,
`name` text DEFAULT '',
`email` text DEFAULT '',
`created_at` text DEFAULT (CURRENT_DATE)
);