mirror of
https://github.com/mCaptcha/mCaptcha.git
synced 2024-11-27 11:59:56 +03:00
4 lines
181 B
SQL
4 lines
181 B
SQL
CREATE TABLE IF NOT EXISTS mcaptcha_domains_verified (
|
|
name VARCHAR(100) PRIMARY KEY NOT NULL UNIQUE,
|
|
owner_id INTEGER references mcaptcha_users(ID) ON DELETE CASCADE NOT NULL
|
|
);
|