-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3e59faa
commit 08e6d58
Showing
2 changed files
with
22 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
update categories set name ='Nature' where id = 1; | ||
update categories set name ='Lifestyle and wellness' where id = 2; | ||
update categories set name ='People and emotions' where id = 3; | ||
update categories set name ='Food and drinks' where id = 4; | ||
update categories set name ='Sports' where id = 5; | ||
update categories set name ='Education and learning' where id = 6; | ||
update categories set name ='Industry and technology' where id = 7; | ||
update categories set name ='Business and marketing' where id = 8; | ||
update categories set name ='AIGC' where id = 9; | ||
|
||
|
||
insert into categories(id, name) values (10, 'Travel and places'); | ||
insert into categories(id, name) values (11, 'Animals'); | ||
insert into categories(id, name) values (12, 'Plants'); | ||
insert into categories(id, name) values (13, 'Buildings'); | ||
insert into categories(id, name) values (14, 'Indoor'); | ||
insert into categories(id, name) values (15, 'Outdoor'); | ||
insert into categories(id, name) values (16, 'Streets'); | ||
insert into categories(id, name) values (17, 'Events'); | ||
insert into categories(id, name) values (18, 'Feelings'); | ||
insert into categories(id, name) values (19, 'Things'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters