mirror of
https://github.com/mCaptcha/mCaptcha.git
synced 2026-02-11 01:55:40 +00:00
feat: impl MCDatabase for mariadb
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
-- Add migration script here
|
||||
CREATE TABLE IF NOT EXISTS mcaptcha_notifications (
|
||||
id INT auto_increment,
|
||||
PRIMARY KEY(id),
|
||||
|
||||
tx INT NOT NULL,
|
||||
rx INT NOT NULL,
|
||||
heading varchar(30) NOT NULL,
|
||||
message varchar(250) NOT NULL,
|
||||
-- todo: mv read -> read_notification
|
||||
read_notification BOOLEAN DEFAULT null,
|
||||
received timestamp NOT NULL DEFAULT now(),
|
||||
|
||||
CONSTRAINT `fk_mcaptcha_mcaptcha_user_notifications_tx`
|
||||
FOREIGN KEY (tx)
|
||||
REFERENCES mcaptcha_users (ID)
|
||||
ON DELETE CASCADE
|
||||
ON UPDATE CASCADE
|
||||
);
|
||||
Reference in New Issue
Block a user