-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatabase2.sql
86 lines (72 loc) · 1.88 KB
/
database2.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
DROP DATABASE IF EXISTS foodfydb;
CREATE DATABASE foodfydb;
CREATE TABLE "recipes" (
"id" SERIAL PRIMARY KEY,
"title" text,
"ingredients" text[],
"preparation" text[],
"information" text,
"user_id" int,
"created_at" timestamp DEFAULT (now()),
"updated_at" timestamp DEFAULT (now())
);
CREATE TABLE "users" (
"id" SERIAL PRIMARY KEY,
"name" text NOT NULL,
"email" text NOT NULL,
"file_id" int,
"password" text NOT NULL,
"is_admin" boolean,
"reset_token" text,
"reset_token_expires" text,
"created_at" timestamp DEFAULT (now()),
"updated_at" timestamp DEFAULT (now())
);
INSERT INTO users(name, email, password, is_admin) VALUES ('Yasmin Braga', '[email protected]', '123456', true)
ALTER TABLE "recipes"
ADD FOREIGN KEY ("user_id")
REFERENCES "users" ("id");
CREATE TABLE "files" (
"id" SERIAL PRIMARY KEY,
"name" text,
"path" text
);
CREATE TABLE "recipe_files" (
"id" SERIAL PRIMARY KEY,
"recipe_id" int,
"file_id" int
);
ALTER TABLE "recipe_files"
ADD FOREIGN KEY ("file_id")
REFERENCES "files" ("id")
ON DELETE CASCADE;
ALTER TABLE "recipe_files"
ADD FOREIGN KEY ("recipe_id")
REFERENCES "recipes" ("id")
ON DELETE CASCADE;
-- create procedure
CREATE FUNCTION trigger_set_timestamp()
RETURNS TRIGGER AS $$
BEGIN
NEW.updated_at = NOW();
RETURN NEW;
END;
$$ LANGUAGE plpgsql;
-- auto updated_at recipes
CREATE TRIGGER set_timestamp
BEFORE UPDATE ON recipes
FOR EACH ROW
EXECUTE PROCEDURE trigger_set_timestamp();
-- auto updated_at users
CREATE TRIGGER set_timestamp
BEFORE UPDATE ON users
FOR EACH ROW
EXECUTE PROCEDURE trigger_set_timestamp();
CREATE TABLE "session" (
"sid" varchar NOT NULL COLLATE "default",
"sess" json NOT NULL,
"expire" timestamp(6) NOT NULL
)
WITH (OIDS=FALSE);
ALTER TABLE "session" ADD CONSTRAINT "session_pkey" PRIMARY KEY ("sid") NOT DEFERRABLE INITIALLY IMMEDIATE;
CREATE INDEX "IDX_session_expire" ON "session" ("expire");