mirror of https://github.com/usememos/memos
chore: update seed data for tag (#817)
* chore: update seed data * chore: add `_journal_mode` for SQLite * chore: update create tag dialogpull/819/head
parent
b6f19ca093
commit
201c0b020d
@ -0,0 +1,32 @@
|
|||||||
|
INSERT INTO
|
||||||
|
tag (
|
||||||
|
`name`,
|
||||||
|
`creator_id`
|
||||||
|
)
|
||||||
|
VALUES
|
||||||
|
(
|
||||||
|
'Hello',
|
||||||
|
101
|
||||||
|
);
|
||||||
|
|
||||||
|
INSERT INTO
|
||||||
|
tag (
|
||||||
|
`name`,
|
||||||
|
`creator_id`
|
||||||
|
)
|
||||||
|
VALUES
|
||||||
|
(
|
||||||
|
'TODO',
|
||||||
|
101
|
||||||
|
);
|
||||||
|
|
||||||
|
INSERT INTO
|
||||||
|
tag (
|
||||||
|
`name`,
|
||||||
|
`creator_id`
|
||||||
|
)
|
||||||
|
VALUES
|
||||||
|
(
|
||||||
|
'TODO',
|
||||||
|
102
|
||||||
|
);
|
Loading…
Reference in New Issue