From 8b209924244061c656e431ac18091497860aade9 Mon Sep 17 00:00:00 2001 From: boojack Date: Mon, 2 May 2022 10:57:31 +0800 Subject: [PATCH] chore: update seed data --- store/seed/10002__memo.sql | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/store/seed/10002__memo.sql b/store/seed/10002__memo.sql index 1800fa31..f4f747f1 100644 --- a/store/seed/10002__memo.sql +++ b/store/seed/10002__memo.sql @@ -8,3 +8,16 @@ VALUES '#memos 👋 Welcome to memos', 101 ); + +INSERT INTO + memo ( + `content`, + `creator_id`, + `row_status` + ) +VALUES + ( + '好好学习,天天向上。', + 101, + 'ARCHIVED' + );