atuin/atuin-server-postgres/migrations/20210425153800_create_sessions.sql
Conrad Ludgate 8655c93853
refactor server to allow pluggable db and tracing (#1036)
* refactor server to allow pluggable db and tracing

* clean up

* fix descriptions

* remove dependencies
2023-06-12 09:04:35 +01:00

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
);