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

@@ -9,9 +9,27 @@ INSERT INTO
VALUES
(
101,
'demo@iamcorgi.com',
'Demo Host',
'frank@iamcorgi.com',
'Frank',
-- raw password: secret
'$2a$14$ajq8Q7fbtFRQvXpdCq7Jcuy.Rx1h/L4J60Otx.gyNLbAYctGMJ9tK',
'demo_open_id'
'frank_open_id'
);
INSERT INTO
user (
`id`,
`email`,
`name`,
`password_hash`,
`open_id`
)
VALUES
(
102,
'bob@iamcorgi.com',
'Bob',
-- raw password: secret
'$2a$14$ajq8Q7fbtFRQvXpdCq7Jcuy.Rx1h/L4J60Otx.gyNLbAYctGMJ9tK',
'bob_open_id'
);