Commit 28a18881 authored by Steven's avatar Steven

chore: fix user seed data

parent 8824ee9b
......@@ -5,7 +5,6 @@ INSERT INTO
`role`,
`email`,
`nickname`,
`open_id`,
`password_hash`
)
VALUES
......@@ -15,7 +14,6 @@ VALUES
'HOST',
'demo@usememos.com',
'Demo Hero',
hex(randomblob(16)),
-- raw password: secret
'$2a$14$ajq8Q7fbtFRQvXpdCq7Jcuy.Rx1h/L4J60Otx.gyNLbAYctGMJ9tK'
);
......@@ -27,7 +25,6 @@ INSERT INTO
`role`,
`email`,
`nickname`,
`open_id`,
`password_hash`
)
VALUES
......@@ -37,7 +34,6 @@ VALUES
'USER',
'jack@usememos.com',
'Jack',
hex(randomblob(16)),
-- raw password: secret
'$2a$14$ajq8Q7fbtFRQvXpdCq7Jcuy.Rx1h/L4J60Otx.gyNLbAYctGMJ9tK'
);
......@@ -50,7 +46,6 @@ INSERT INTO
`role`,
`email`,
`nickname`,
`open_id`,
`password_hash`
)
VALUES
......@@ -61,7 +56,6 @@ VALUES
'USER',
'bob@usememos.com',
'Bob',
hex(randomblob(16)),
-- raw password: secret
'$2a$14$ajq8Q7fbtFRQvXpdCq7Jcuy.Rx1h/L4J60Otx.gyNLbAYctGMJ9tK'
);
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment