mirror of
https://github.com/scroll-tech/scroll.git
synced 2026-01-23 12:58:15 -05:00
Co-authored-by: colinlyguo <colinlyguo@gmail.com> Co-authored-by: maskpp <maskpp266@gmail.com> Co-authored-by: Péter Garamvölgyi <peter@scroll.io> Co-authored-by: HAOYUatHZ <37070449+HAOYUatHZ@users.noreply.github.com> Co-authored-by: Lawliet-Chan <1576710154@qq.com> Co-authored-by: HAOYUatHZ <haoyu@protonmail.com>
19 lines
332 B
SQL
19 lines
332 B
SQL
-- +goose Up
|
|
-- +goose StatementBegin
|
|
|
|
create table session_info
|
|
(
|
|
id VARCHAR NOT NULL,
|
|
rollers_info BYTEA NOT NULL
|
|
);
|
|
|
|
create unique index session_info_id_uindex
|
|
on session_info (id);
|
|
|
|
-- +goose StatementEnd
|
|
|
|
-- +goose Down
|
|
-- +goose StatementBegin
|
|
drop table if exists session_info;
|
|
-- +goose StatementEnd
|