aboutsummaryrefslogtreecommitdiffstats
path: root/atuin-server-postgres/migrations/20210425153800_create_sessions.sql
blob: c2fb65598adef50e2fdfcddb003b63615edf4a94 (plain) (blame)
1
2
3
4
5
6
-- Add migration script here
create table sessions (
	id bigserial primary key,
	user_id bigserial,
	token varchar(128) unique not null
);