mirror of
https://github.com/usememos/memos.git
synced 2025-03-04 01:04:38 +08:00
chore: update seed data
This commit is contained in:
parent
749187e1e9
commit
7735cfac31
3 changed files with 9 additions and 2 deletions
|
@ -36,8 +36,7 @@ INSERT INTO
|
|||
VALUES
|
||||
(
|
||||
3,
|
||||
"**[Slash](https://github.com/yourselfhosted/slash)**: A bookmarking and url shortener, save and share your links very easily.
|
||||
**[TechStack](https://github.com/Get-Tech-Stack/TechStack)**: A browser extension that will display the technology stack of the GitHub repository.",
|
||||
"**[yourselfhosted/slash](https://github.com/yourselfhosted/slash)**: An open source, self-hosted bookmarks and link sharing platform. Save and share your links very easily.",
|
||||
101,
|
||||
'PUBLIC'
|
||||
);
|
||||
|
|
4
store/db/sqlite/seed/10005__system_setting.sql
Normal file
4
store/db/sqlite/seed/10005__system_setting.sql
Normal file
|
@ -0,0 +1,4 @@
|
|||
INSERT INTO
|
||||
system_setting (`name`, `value`)
|
||||
VALUES
|
||||
('instance_url', 'https://demo.usememos.com');
|
4
store/db/sqlite/seed/10006__resource.sql
Normal file
4
store/db/sqlite/seed/10006__resource.sql
Normal file
|
@ -0,0 +1,4 @@
|
|||
INSERT INTO
|
||||
resource (`creator_id`, `filename`, `external_link`, `type`, `memo_id`)
|
||||
VALUES
|
||||
(101, 'slash-demo.png', 'https://github.com/yourselfhosted/slash/blob/main/docs/assets/demo.png?raw=true', 'image/png', 3);
|
Loading…
Reference in a new issue