-
Notifications
You must be signed in to change notification settings - Fork 0
/
db.sql
67 lines (62 loc) · 1.99 KB
/
db.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
CREATE TABLE `users` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`hunt_id` bigint(20) unsigned NOT NULL,
`name` varchar(255) DEFAULT NULL,
`email` varchar(255) DEFAULT NULL,
`organization` varchar(255) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
);
CREATE TABLE `tags` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`hunt_id` bigint(20) unsigned NOT NULL,
`name` varchar(255) DEFAULT NULL,
`description` text DEFAULT NULL,
`hint` text DEFAULT NULL,
`website_url` varchar(255) DEFAULT NULL,
`logo_url` varchar(255) DEFAULT NULL,
`cta_url` varchar(255) DEFAULT NULL,
`cta_text` varchar(255) DEFAULT NULL,
`active` bool DEFAULT 1,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
);
CREATE TABLE `user_tags` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned NOT NULL,
`tag_id` bigint(20) unsigned NOT NULL,
`opt_out` boolean NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
);
CREATE TABLE `questions` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`hunt_id` bigint(20) unsigned NOT NULL,
`question_text` text DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
);
CREATE TABLE `tag_facts` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`tag_id` bigint(20) unsigned NOT NULL,
`question_id` bigint(20) unsigned NOT NULL,
`fact` text DEFAULT NULL,
`excerpt` varchar(255) DEFAULT NULL,
`order` int DEFAULT 0,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
);
CREATE TABLE `hunts` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) DEFAULT NULL,
`short_name` varchar(255) DEFAULT NULL,
`domain` varchar(255) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
);