mirror of
https://github.com/ArthurDanjou/spanish-learner.git
synced 2026-01-14 20:19:32 +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)
|
|
);
|