memos/store/db/seed/10001__user.sql

20 lines
307 B
MySQL
Raw Normal View History

2022-03-28 18:38:12 +03:00
INSERT INTO
user (
`id`,
`email`,
2022-05-19 17:29:27 +03:00
`role`,
`name`,
2022-03-28 18:38:12 +03:00
`open_id`,
`password_hash`
)
VALUES
(
101,
2022-05-20 01:48:55 +03:00
'demo@usememos.com',
2022-05-19 17:29:27 +03:00
'OWNER',
2022-05-20 01:48:55 +03:00
'Demo Owner',
'demo_open_id',
2022-05-19 13:32:04 +03:00
-- raw password: secret
2022-05-03 06:49:10 +03:00
'$2a$14$ajq8Q7fbtFRQvXpdCq7Jcuy.Rx1h/L4J60Otx.gyNLbAYctGMJ9tK'
);