Commit 28a18881 authored by Steven's avatar Steven

chore: fix user seed data

parent 8824ee9b
...@@ -5,7 +5,6 @@ INSERT INTO ...@@ -5,7 +5,6 @@ INSERT INTO
`role`, `role`,
`email`, `email`,
`nickname`, `nickname`,
`open_id`,
`password_hash` `password_hash`
) )
VALUES VALUES
...@@ -15,7 +14,6 @@ VALUES ...@@ -15,7 +14,6 @@ VALUES
'HOST', 'HOST',
'demo@usememos.com', 'demo@usememos.com',
'Demo Hero', 'Demo Hero',
hex(randomblob(16)),
-- raw password: secret -- raw password: secret
'$2a$14$ajq8Q7fbtFRQvXpdCq7Jcuy.Rx1h/L4J60Otx.gyNLbAYctGMJ9tK' '$2a$14$ajq8Q7fbtFRQvXpdCq7Jcuy.Rx1h/L4J60Otx.gyNLbAYctGMJ9tK'
); );
...@@ -27,7 +25,6 @@ INSERT INTO ...@@ -27,7 +25,6 @@ INSERT INTO
`role`, `role`,
`email`, `email`,
`nickname`, `nickname`,
`open_id`,
`password_hash` `password_hash`
) )
VALUES VALUES
...@@ -37,7 +34,6 @@ VALUES ...@@ -37,7 +34,6 @@ VALUES
'USER', 'USER',
'jack@usememos.com', 'jack@usememos.com',
'Jack', 'Jack',
hex(randomblob(16)),
-- raw password: secret -- raw password: secret
'$2a$14$ajq8Q7fbtFRQvXpdCq7Jcuy.Rx1h/L4J60Otx.gyNLbAYctGMJ9tK' '$2a$14$ajq8Q7fbtFRQvXpdCq7Jcuy.Rx1h/L4J60Otx.gyNLbAYctGMJ9tK'
); );
...@@ -50,7 +46,6 @@ INSERT INTO ...@@ -50,7 +46,6 @@ INSERT INTO
`role`, `role`,
`email`, `email`,
`nickname`, `nickname`,
`open_id`,
`password_hash` `password_hash`
) )
VALUES VALUES
...@@ -61,7 +56,6 @@ VALUES ...@@ -61,7 +56,6 @@ VALUES
'USER', 'USER',
'bob@usememos.com', 'bob@usememos.com',
'Bob', 'Bob',
hex(randomblob(16)),
-- raw password: secret -- raw password: secret
'$2a$14$ajq8Q7fbtFRQvXpdCq7Jcuy.Rx1h/L4J60Otx.gyNLbAYctGMJ9tK' '$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