mirror of
https://github.com/ArthurDanjou/arthome.git
synced 2026-01-14 12:14:33 +01:00
6 lines
129 B
SQL
6 lines
129 B
SQL
CREATE TABLE `users` (
|
|
`id` integer PRIMARY KEY NOT NULL,
|
|
`name` text DEFAULT '',
|
|
`created_at` text DEFAULT (CURRENT_DATE)
|
|
);
|