mirror of
https://github.com/ArthurDanjou/arthome.git
synced 2026-01-20 15:01:35 +01:00
8 lines
186 B
SQL
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)
|
|
);
|