mirror of
https://github.com/usememos/memos.git
synced 2025-06-05 22:09:59 +02:00
chore: update seed data
This commit is contained in:
@@ -36,8 +36,7 @@ INSERT INTO
|
|||||||
VALUES
|
VALUES
|
||||||
(
|
(
|
||||||
3,
|
3,
|
||||||
"**[Slash](https://github.com/yourselfhosted/slash)**: A bookmarking and url shortener, save and share your links very easily.
|
"**[yourselfhosted/slash](https://github.com/yourselfhosted/slash)**: An open source, self-hosted bookmarks and link sharing platform. 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.",
|
|
||||||
101,
|
101,
|
||||||
'PUBLIC'
|
'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);
|
Reference in New Issue
Block a user