mirror of
https://github.com/atuinsh/atuin.git
synced 2024-11-23 00:34:20 +01:00
156893d774
* Begin moving to sqlx for local too * Stupid scanners should just have a nice cup of tea Random internet shit searching for /.env or whatever * Remove diesel and rusqlite fully
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
|
|
);
|