atuin/migrations/2021-03-21-181750_create_sessions/up.sql

7 lines
132 B
MySQL
Raw Normal View History

-- Your SQL goes here
create table sessions (
id bigserial primary key,
user_id bigserial,
token varchar(128) unique not null
);