chore: add tags to seed data

This commit is contained in:
Steven 2023-07-27 21:05:31 +08:00
parent 5ee32d2e78
commit fd1168e1dc

View File

@ -22,6 +22,7 @@ INSERT INTO
`name`,
`link`,
`visibility`,
`tag`,
`og_metadata`
)
VALUES
@ -31,6 +32,7 @@ VALUES
'ai-infra',
'https://star-history.com/blog/open-source-ai-infra-projects',
'PUBLIC',
'star-history AI',
'{"title":"Open Source AI Infra for Your Next Project","description":"Some open-source infra projects that can be directly used for your next project. 💡","image":"https://star-history.com/blog/assets/open-source-ai-infra-projects/banner.webp"}'
);
@ -41,6 +43,7 @@ INSERT INTO
`name`,
`link`,
`visibility`,
`tag`,
`og_metadata`
)
VALUES
@ -50,6 +53,7 @@ VALUES
'schema-change',
'https://www.bytebase.com/blog/how-to-handle-database-schema-change/#what-is-a-database-schema-change',
'PUBLIC',
'database article👍'
'{"title":"How to Handle Database Migration / Schema Change?","description":"A database schema is the structure of a database, which describes the relationships between the different tables and fields in the database. A database schema change, also known as schema migration, or simply migration refers to any alteration to this structure, such as adding a new table, modifying the data type of a field, or changing the relationships between tables.","image":"https://www.bytebase.com/_next/image/?url=%2Fcontent%2Fblog%2Fhow-to-handle-database-schema-change%2Fchange.webp\u0026w=2048\u0026q=75"}'
);
@ -59,6 +63,7 @@ INSERT INTO
`creator_id`,
`name`,
`link`,
`tag`,
`visibility`
)
VALUES
@ -67,6 +72,7 @@ VALUES
101,
'sqlchat',
'https://www.sqlchat.ai',
'ai chatbot'
'WORKSPACE'
);