chore: update seeding data

This commit is contained in:
Steven
2022-09-15 21:11:50 +08:00
parent 5c73f6dd00
commit 7f29882ebf
5 changed files with 121 additions and 5 deletions

View File

@@ -35,3 +35,60 @@ VALUES
'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'
);