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
MySQL
Raw Permalink Normal View History

2022-02-12 09:28:56 -08:00
-- 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