mirror of
https://github.com/scroll-tech/scroll.git
synced 2026-01-14 08:28:02 -05:00
Co-authored-by: colinlyguo <651734127@qq.com> Co-authored-by: zimpha <zimpha@gmail.com> Co-authored-by: HAOYUatHZ <37070449+HAOYUatHZ@users.noreply.github.com> Co-authored-by: HAOYUatHZ <haoyu@protonmail.com>
19 lines
336 B
SQL
19 lines
336 B
SQL
-- +goose Up
|
|
-- +goose StatementBegin
|
|
|
|
create table session_info
|
|
(
|
|
hash VARCHAR NOT NULL,
|
|
rollers_info BYTEA NOT NULL
|
|
);
|
|
|
|
create unique index session_info_hash_uindex
|
|
on session_info (hash);
|
|
|
|
-- +goose StatementEnd
|
|
|
|
-- +goose Down
|
|
-- +goose StatementBegin
|
|
drop table if exists session_info;
|
|
-- +goose StatementEnd
|