Compare commits

..

7 Commits

2 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,3 @@
-- This file should undo anything in `up.sql`
alter table sessions
drop column last_seen;

View File

@ -0,0 +1,3 @@
-- Your SQL goes here
alter table sessions
add column last_seen bigint not null default 0;