5 lines
95 B
SQL
5 lines
95 B
SQL
-- Add migration script here
|
|
CREATE TABLE IF NOT EXISTS events (
|
|
id BIGSERIAL PRIMARY KEY
|
|
);
|