mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-10-02 23:35:20 +00:00
7 lines
152 B
SQL
7 lines
152 B
SQL
create table user
|
|
(
|
|
-- integer primary keys are the most efficient in SQLite
|
|
user_id integer primary key,
|
|
username text unique not null
|
|
);
|