mirror of https://github.com/usememos/memos
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
307 B
MySQL
20 lines
307 B
MySQL
3 years ago
|
INSERT INTO
|
||
|
user (
|
||
|
`id`,
|
||
3 years ago
|
`email`,
|
||
3 years ago
|
`role`,
|
||
|
`name`,
|
||
3 years ago
|
`open_id`,
|
||
|
`password_hash`
|
||
|
)
|
||
|
VALUES
|
||
|
(
|
||
|
101,
|
||
3 years ago
|
'demo@usememos.com',
|
||
3 years ago
|
'OWNER',
|
||
3 years ago
|
'Demo Owner',
|
||
|
'demo_open_id',
|
||
3 years ago
|
-- raw password: secret
|
||
3 years ago
|
'$2a$14$ajq8Q7fbtFRQvXpdCq7Jcuy.Rx1h/L4J60Otx.gyNLbAYctGMJ9tK'
|
||
|
);
|