blob: 09ed89131256c52ff1fa558ffc16032d7d73b4a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
"""
Create 'resources' table
"""
from yoyo import step
__depends__ = {'20221109_01_HbD5F-add-resource-meta-field-to-resource-categories-field'}
steps = [
step(
"""
CREATE TABLE IF NOT EXISTS resources(
group_id TEXT NOT NULL,
resource_id TEXT NOT NULL,
resource_name TEXT NOT NULL,
resource_category_id TEXT NOT NULL,
PRIMARY KEY(group_id, resource_id),
FOREIGN KEY(group_id) REFERENCES groups(group_id),
FOREIGN KEY(resource_category_id) REFERENCES resource_categories(resource_category_id)
) WITHOUT ROWID
""",
"DROP TABLE IF EXISTS resources")
]
|