8 lines
257 B
MySQL
8 lines
257 B
MySQL
|
-- security_preferences definition
|
||
|
|
||
|
CREATE TABLE "security_preferences" (
|
||
|
id INTEGER NOT NULL,
|
||
|
account_tokens TEXT NOT NULL,
|
||
|
password_hash TEXT NOT NULL,
|
||
|
CONSTRAINT NewTable_FK FOREIGN KEY (id) REFERENCES users(id) ON DELETE CASCADE ON UPDATE CASCADE
|
||
|
);
|