yoake/migrations/2023-06-07-213214_session_store/up.sql

7 lines
141 B
MySQL
Raw Normal View History

2023-06-18 18:17:28 -05:00
-- Your SQL goes here
create table sessions (
uuid text primary key not null,
expiry datetime not null,
content text not null
);