mirror of
https://github.com/mCaptcha/mCaptcha.git
synced 2025-04-07 09:03:27 +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
|
|
);
|