mirror of
https://github.com/atuinsh/atuin.git
synced 2024-11-23 08:45:04 +01:00
95cc472037
I'd like to tidy up the root a little, and it's nice to have all the rust crates in one place
11 lines
464 B
SQL
11 lines
464 B
SQL
create table users (
|
|
id bigserial primary key, -- also store our own ID
|
|
username varchar(32) not null unique, -- being able to contact users is useful
|
|
email varchar(128) not null unique, -- being able to contact users is useful
|
|
password varchar(128) not null unique
|
|
);
|
|
|
|
-- the prior index is case sensitive :(
|
|
CREATE UNIQUE INDEX email_unique_idx on users (LOWER(email));
|
|
CREATE UNIQUE INDEX username_unique_idx on users (LOWER(username));
|