yoake/migrations/2023-06-07-213214_session_store/up.sql
2023-06-18 18:17:28 -05:00

6 lines
141 B
SQL

-- Your SQL goes here
create table sessions (
uuid text primary key not null,
expiry datetime not null,
content text not null
);