Skip to content

Commit

Permalink
chore: update seed data
Browse files Browse the repository at this point in the history
  • Loading branch information
boojack committed Jul 24, 2023
1 parent 6b10792 commit 6687645
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions store/db/seed/10002__shortcut.sql
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ VALUES
(
1,
101,
'memos',
'https://usememos.com',
'discord',
'https://discord.gg/QZqUuUAhDV',
'PUBLIC'
);

Expand All @@ -21,15 +21,17 @@ INSERT INTO
`creator_id`,
`name`,
`link`,
`visibility`
`visibility`,
`og_metadata`
)
VALUES
(
2,
101,
'sqlchat',
'https://www.sqlchat.ai',
'WORKSPACE'
'ai-infra',
'https://star-history.com/blog/open-source-ai-infra-projects',
'PUBLIC',
'{"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"}'
);

INSERT INTO
Expand All @@ -45,10 +47,10 @@ VALUES
(
3,
101,
'ai-infra',
'https://star-history.com/blog/open-source-ai-infra-projects',
'schema-change',
'https://www.bytebase.com/blog/how-to-handle-database-schema-change/#what-is-a-database-schema-change',
'PUBLIC',
'{"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"}'
'{"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"}'
);

INSERT INTO
Expand All @@ -57,17 +59,15 @@ INSERT INTO
`creator_id`,
`name`,
`link`,
`visibility`,
`og_metadata`
`visibility`
)
VALUES
(
4,
101,
'schema-change',
'https://www.bytebase.com/blog/how-to-handle-database-schema-change/#what-is-a-database-schema-change',
'PUBLIC',
'{"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"}'
'sqlchat',
'https://www.sqlchat.ai',
'WORKSPACE'
);

INSERT INTO
Expand Down

0 comments on commit 6687645

Please sign in to comment.