DE
Size: a a a
DE
DE
DE
DE
[{
"answer": "ЖЕЛЕЗНЕНИЕ",
"clues": ["электролитическое нанесение слоя железа на поверхность металлических изделий", "нанесение слоя железа на поверхность металлических изделий"]
}, {
"answer": "ЖЕЛТОПУЗИК",
"clues": ["пресмыкающееся рода ящериц", "безногая ящерица семейства веретениц"]
}, {
"answer": "ЖЕЛТОРОТИК",
"clues": ["молодой, неопытный, наивный человек", "молодой солдат (разг.)"]
}]DE
DE
DE
DE
DE
DE
DE
IZ
IZ
ДУ
A
CREATE TABLE users(
id uniqueidentifier NOT NULL PRIMARY KEY DEFAULT newid(),
name varchar(64) NOT NULL,
email varchar(64) NOt NULL,
password varchar(64) NOT NULL,
is_block bit DEFAULT 0
);
CREATE TABLE topics(
id uniqueidentifier NOT NULL PRIMARY KEY DEFAULT newid(),
created_by_user_id uniqueidentifier NOT NULL,
title varchar(32) NOT NULL,
body text NOT NULL,
date datetime2 NOT NULL DEFAULT getutcdate(),
edited_date datetime2 DEFAULT NULL,
FOREIGN KEY (created_by_user_id) REFERENCES users(id) ON DELETE CASCADE
);
CREATE TABLE posts(
id uniqueidentifier NOT NULL PRIMARY KEY DEFAULT newid(),
id_topic uniqueidentifier NOT NULL,
written_by_user_id uniqueidentifier NOT NULL,
message text NOT NULL,
date datetime2 NOT NULL DEFAULT getutcdate(),
edited_date datetime2 DEFAULT NULL,
FOREIGN KEY (written_by_user_id) REFERENCES users(id) ON DELETE CASCADE,
FOREIGN KEY (id_topic) references topics(id) ON DELETE CASCADE
);
CREATE TABLE events(
id uniqueidentifier NOT NULL PRIMARY KEY DEFAULT newid(),
message text NOT NULL,
date datetime2 NOT NULL DEFAULT getutcdate(),
)
DE