mirror of
https://github.com/usememos/memos.git
synced 2025-02-01 01:58:14 +08:00
16 lines
229 B
MySQL
16 lines
229 B
MySQL
|
INSERT INTO
|
||
|
user (
|
||
|
`id`,
|
||
|
`name`,
|
||
|
`open_id`,
|
||
|
`password_hash`
|
||
|
)
|
||
|
VALUES
|
||
|
(
|
||
|
101,
|
||
|
'guest',
|
||
|
'guest_open_id',
|
||
|
-- "secret"
|
||
|
'$2a$14$ajq8Q7fbtFRQvXpdCq7Jcuy.Rx1h/L4J60Otx.gyNLbAYctGMJ9tK'
|
||
|
);
|