mirror of
https://github.com/aykhans/slash-e.git
synced 2025-04-21 06:13:33 +00:00
68 lines
845 B
SQL
68 lines
845 B
SQL
INSERT INTO
|
|
shortcut (
|
|
`id`,
|
|
`creator_id`,
|
|
`name`,
|
|
`link`,
|
|
`visibility`
|
|
)
|
|
VALUES
|
|
(
|
|
1,
|
|
101,
|
|
'memos',
|
|
'https://usememos.com',
|
|
'PUBLIC'
|
|
);
|
|
|
|
INSERT INTO
|
|
shortcut (
|
|
`id`,
|
|
`creator_id`,
|
|
`name`,
|
|
`link`,
|
|
`visibility`
|
|
)
|
|
VALUES
|
|
(
|
|
2,
|
|
101,
|
|
'sqlchat',
|
|
'https://www.sqlchat.ai',
|
|
'WORKSPACE'
|
|
);
|
|
|
|
INSERT INTO
|
|
shortcut (
|
|
`id`,
|
|
`creator_id`,
|
|
`name`,
|
|
`link`,
|
|
`visibility`
|
|
)
|
|
VALUES
|
|
(
|
|
3,
|
|
101,
|
|
'schema-change',
|
|
'https://www.bytebase.com/blog/how-to-handle-database-schema-change/#what-is-a-database-schema-change',
|
|
'PUBLIC'
|
|
);
|
|
|
|
INSERT INTO
|
|
shortcut (
|
|
`id`,
|
|
`creator_id`,
|
|
`name`,
|
|
`link`,
|
|
`visibility`
|
|
)
|
|
VALUES
|
|
(
|
|
4,
|
|
102,
|
|
'stevenlgtm',
|
|
'https://github.com/boojack',
|
|
'PUBLIC'
|
|
);
|