mirror of
https://github.com/aykhans/slash-e.git
synced 2025-04-17 20:55:28 +00:00
38 lines
464 B
SQL
38 lines
464 B
SQL
INSERT INTO
|
|
shortcut (
|
|
`creator_id`,
|
|
`workspace_id`,
|
|
`name`,
|
|
`link`,
|
|
`description`,
|
|
`visibility`
|
|
)
|
|
VALUES
|
|
(
|
|
101,
|
|
11,
|
|
'baidu',
|
|
'https://baidu.com',
|
|
'百度搜索',
|
|
'WORKSPACE'
|
|
);
|
|
|
|
INSERT INTO
|
|
shortcut (
|
|
`creator_id`,
|
|
`workspace_id`,
|
|
`name`,
|
|
`link`,
|
|
`description`,
|
|
`visibility`
|
|
)
|
|
VALUES
|
|
(
|
|
102,
|
|
11,
|
|
'bl',
|
|
'https://bilibili.com',
|
|
'B站',
|
|
'PUBLIC'
|
|
);
|