youmubot/youmubot-db-sql/migrations/20250327105109_ignored_users.sql
Natsu Kagami 7c0cbea716
Some checks are pending
Build and Test / Format check (push) Waiting to run
Build and Test / Lint (push) Waiting to run
Build and Test / Test (push) Waiting to run
Build and Test / Build (push) Waiting to run
ignore command (#59)
* New table `ignored_users` and queries

* Update sqlx to 0.8

* Implement `ignore` command and add needed hooks
2025-03-27 15:13:00 +01:00

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'))
);