mirror of
https://github.com/aykhans/slash-e.git
synced 2025-04-21 22:28:57 +00:00
95 lines
1.1 KiB
SQL
95 lines
1.1 KiB
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'
|
|
);
|
|
|
|
INSERT INTO
|
|
shortcut (
|
|
`creator_id`,
|
|
`workspace_id`,
|
|
`name`,
|
|
`link`,
|
|
`description`,
|
|
`visibility`
|
|
)
|
|
VALUES
|
|
(
|
|
101,
|
|
11,
|
|
'ph',
|
|
'https://producthunt.com',
|
|
'PH',
|
|
'PRIVATE'
|
|
);
|
|
|
|
INSERT INTO
|
|
shortcut (
|
|
`creator_id`,
|
|
`workspace_id`,
|
|
`name`,
|
|
`link`,
|
|
`description`,
|
|
`visibility`
|
|
)
|
|
VALUES
|
|
(
|
|
101,
|
|
12,
|
|
'github',
|
|
'https://producthunt.com',
|
|
'GitHub',
|
|
'PRIVATE'
|
|
);
|
|
|
|
INSERT INTO
|
|
shortcut (
|
|
`creator_id`,
|
|
`workspace_id`,
|
|
`name`,
|
|
`link`,
|
|
`description`,
|
|
`visibility`
|
|
)
|
|
VALUES
|
|
(
|
|
102,
|
|
12,
|
|
'go',
|
|
'https://google.com',
|
|
'google',
|
|
'WORKSPACE'
|
|
);
|