From aaa89d7dd55238f466004b7ad644d6f496e93256 Mon Sep 17 00:00:00 2001 From: miguel-merlin Date: Sat, 5 Oct 2024 17:33:52 -0400 Subject: [PATCH] Added blogs to db --- initdb/init.sql | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/initdb/init.sql b/initdb/init.sql index 634a12b..0330125 100644 --- a/initdb/init.sql +++ b/initdb/init.sql @@ -37,6 +37,14 @@ create table teams ( team_class int not null ); + +create table blogs ( + id bigint primary key generated always as identity, + author varchar(255) not null, + title varchar(255) not null, + date_created timestamp not null +) + alter table users add constraint fk_team_id foreign key (team_id) references teams(id); @@ -70,4 +78,10 @@ insert into teams (name, team_lead_id, team_manager_id, date_created, team_class insert into user_roles (user_id, role_id) values (1, 1), -- John Doe with E-BOARD role (2, 2), -- Jane Smith with TEAM_LEAD role -(3, 3); -- Michael Johnson with PRODUCT_MANAGER role \ No newline at end of file +(3, 3); -- Michael Johnson with PRODUCT_MANAGER role + +-- Insert blogs to the blogs table +insert into blogs (author, title, date_created) values +('John Doe', 'Blog 1', CURRENT_TIMESTAMP), +('Jane Smith', 'Blog 2', CURRENT_TIMESTAMP), +('Michael Johnson', 'Blog 3', CURRENT_TIMESTAMP);