mirror of
https://github.com/atuinsh/atuin.git
synced 2024-11-25 09:44:03 +01:00
8655c93853
* refactor server to allow pluggable db and tracing * clean up * fix descriptions * remove dependencies
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
|
|
);
|