mirror of
https://github.com/atuinsh/atuin.git
synced 2024-11-29 03:34:44 +01:00
7 lines
132 B
MySQL
7 lines
132 B
MySQL
|
-- Your SQL goes here
|
||
|
create table sessions (
|
||
|
id bigserial primary key,
|
||
|
user_id bigserial,
|
||
|
token varchar(128) unique not null
|
||
|
);
|