mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-10-02 15:25:32 +00:00
8 lines
227 B
SQL
8 lines
227 B
SQL
create table user
|
|
(
|
|
-- integer primary keys are the most efficient in SQLite
|
|
user_id integer primary key auto_increment,
|
|
-- indexed text values have to have a max length
|
|
username varchar(16) unique not null
|
|
);
|