slash-e/store/db/seed/10001__user.sql
2022-09-12 21:57:36 +08:00

18 lines
281 B
SQL

INSERT INTO
user (
`id`,
`email`,
`name`,
`password_hash`,
`open_id`
)
VALUES
(
101,
'demo@iamcorgi.com',
'Demo Host',
-- raw password: secret
'$2a$14$ajq8Q7fbtFRQvXpdCq7Jcuy.Rx1h/L4J60Otx.gyNLbAYctGMJ9tK',
'demo_open_id'
);