summaryrefslogtreecommitdiffstats
path: root/migrations/2021-03-21-181750_create_sessions/up.sql
blob: b81705e23f9172391329d5fc5f609e1e397ce9d9 (plain)
1
2
3
4
5
6
-- Your SQL goes here
create table sessions (
	id bigserial primary key,
	user_id bigserial,
	token varchar(128) unique not null
);