mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-12-27 19:23:01 +00:00
8 lines
247 B
SQL
8 lines
247 B
SQL
CREATE TABLE accounts (
|
|
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
name VARCHAR(255) NOT NULL,
|
|
is_active BOOLEAN,
|
|
score DOUBLE
|
|
);
|