Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit d2330e2

Browse files
committedMar 4, 2023
add initial tag data
1 parent 419b7e7 commit d2330e2

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
 

‎db/initial_data.sql

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
insert into user (id, created_at, encrypted_password, name, email, verified) values (1, CURRENT_TIMESTAMP(6), '$2a$10$wJ0g3MsN5M/UogWIXkZHKuF.28jEsxJTuI61TXWxmng8T68FP2OYe', 'System', '', 1);
22
insert into program (id, created_at, created_by, description, language, title, updated_at, visible) values (1, CURRENT_TIMESTAMP(6), 1, 'NHK NEWS WEB EASY 是 NHK 下面向小学生、中学生,以及在日本居住的外国人的简单新闻栏目。', 2, 'NHK NEWS WEB EASY', CURRENT_TIMESTAMP(6), 1);
33
insert into program (id, created_at, created_by, description, language, title, updated_at, visible) values (2, CURRENT_TIMESTAMP(6), 1, 'VOA 慢速英语,语速比标准 VOA 慢三分之一。', 1, 'VOA 慢速英语', CURRENT_TIMESTAMP(6), 1);
4+
insert into tag (id, name) values (1, 'Arts & Culture');
5+
insert into tag (id, name) values (2, 'Education');
6+
insert into tag (id, name) values (3, 'Health & Lifestyle');
7+
insert into tag (id, name) values (4, 'Science & Technology');

0 commit comments

Comments
 (0)
Please sign in to comment.