mirror of
https://github.com/atuinsh/atuin.git
synced 2024-11-26 02:04:49 +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
7 lines
139 B
SQL
7 lines
139 B
SQL
-- Add migration script here
|
|
create table sessions (
|
|
id bigserial primary key,
|
|
user_id bigserial,
|
|
token varchar(128) unique not null
|
|
);
|