Compare commits
7 commits
78420eed68
...
330877c8c5
| Author | SHA1 | Date | |
|---|---|---|---|
| 330877c8c5 | |||
| 8a9744c4a9 | |||
| 465612eec7 | |||
| dd14a2152f | |||
| 6bb3e8a27f | |||
| b1fa048081 | |||
| 3f0e01aaf6 |
2 changed files with 6 additions and 0 deletions
3
migrations/2025-03-15-145721_session_last_seen/down.sql
Normal file
3
migrations/2025-03-15-145721_session_last_seen/down.sql
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
-- This file should undo anything in `up.sql`
|
||||
alter table sessions
|
||||
drop column last_seen;
|
||||
3
migrations/2025-03-15-145721_session_last_seen/up.sql
Normal file
3
migrations/2025-03-15-145721_session_last_seen/up.sql
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
-- Your SQL goes here
|
||||
alter table sessions
|
||||
add column last_seen bigint not null default 0;
|
||||
Loading…
Add table
Add a link
Reference in a new issue