mirror of
https://github.com/natsukagami/youmubot.git
synced 2025-04-19 08:48:54 +00:00
7 lines
189 B
SQL
7 lines
189 B
SQL
-- Add migration script here
|
|
|
|
CREATE TABLE ignored_users (
|
|
id BIGINT NOT NULL PRIMARY KEY,
|
|
username TEXT NOT NULL UNIQUE,
|
|
ignored_since DATETIME NOT NULL DEFAULT (DATETIME('now'))
|
|
);
|