-
Notifications
You must be signed in to change notification settings - Fork 3
/
PresentingPerl-Schema-1.x-SQLite.sql
97 lines (77 loc) · 1.77 KB
/
PresentingPerl-Schema-1.x-SQLite.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
--
-- Created by SQL::Translator::Producer::SQLite
-- Created on Sat Mar 24 11:21:52 2012
--
BEGIN TRANSACTION;
--
-- Table: announcements
--
DROP TABLE announcements;
CREATE TABLE announcements (
id INTEGER PRIMARY KEY NOT NULL,
made_at datetime NOT NULL,
bucket_slug text,
FOREIGN KEY(bucket_slug) REFERENCES buckets(slug)
);
CREATE INDEX announcements_idx_bucket_slug ON announcements (bucket_slug);
--
-- Table: buckets
--
DROP TABLE buckets;
CREATE TABLE buckets (
slug text NOT NULL,
name text NOT NULL,
PRIMARY KEY (slug)
);
--
-- Table: roles
--
DROP TABLE roles;
CREATE TABLE roles (
id INTEGER PRIMARY KEY NOT NULL,
role text
);
--
-- Table: user_role
--
DROP TABLE user_role;
CREATE TABLE user_role (
user_id integer NOT NULL,
role_id integer NOT NULL,
PRIMARY KEY (user_id, role_id),
FOREIGN KEY(role_id) REFERENCES roles(id),
FOREIGN KEY(user_id) REFERENCES users(id)
);
CREATE INDEX user_role_idx_role_id ON user_role (role_id);
CREATE INDEX user_role_idx_user_id ON user_role (user_id);
--
-- Table: users
--
DROP TABLE users;
CREATE TABLE users (
id INTEGER PRIMARY KEY NOT NULL,
username text,
password varchar(255),
email_address text,
first_name text,
last_name text,
active integer
);
--
-- Table: videos
--
DROP TABLE videos;
CREATE TABLE videos (
slug text NOT NULL,
bucket_slug text NOT NULL,
name text NOT NULL,
author text NOT NULL,
details text NOT NULL DEFAULT '',
announcement_id integer NOT NULL,
PRIMARY KEY (slug, bucket_slug),
FOREIGN KEY(announcement_id) REFERENCES announcements(id),
FOREIGN KEY(bucket_slug) REFERENCES buckets(slug)
);
CREATE INDEX videos_idx_announcement_id_bucket_slug ON videos (announcement_id, bucket_slug);
CREATE INDEX videos_idx_bucket_slug ON videos (bucket_slug);
COMMIT;