This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Zaimki/migrations/048-ban-history.sql

13 lines
255 B
SQL

-- Up
CREATE TABLE bans (
type TEXT NOT NULL,
value TEXT NOT NULL,
PRIMARY KEY (type, value)
);
INSERT INTO bans VALUES ('email', 'myriamnicoleacostarodriguez@gmail.com');
INSERT INTO bans VALUES ('email', 'beherit1015@gmail.com');
-- Down