working proper seeding

This commit is contained in:
Arjun Patel
2019-03-14 03:56:01 -07:00
parent 064b8df2a0
commit 0880a36ade
6 changed files with 80 additions and 73 deletions
+3 -1
View File
@@ -1,5 +1,6 @@
'use strict';
const bcrypt = require('bcrypt-nodejs');
const bcrypt = require('bcrypt-nodejs'),
uuidv4 = require('uuid/v4');
// DOESNT WORK AS NEED TO HASH PASSWORD TO DB
module.exports = {
@@ -8,6 +9,7 @@ module.exports = {
return queryInterface.bulkInsert('donors', [
{
id: uuidv4(),
first_name: 'Arjun',
last_name: 'Patel',
email: '[email protected]',
+65 -62
View File
@@ -1,5 +1,6 @@
'use strict';
const bcrypt = require('bcrypt-nodejs');
const bcrypt = require('bcrypt-nodejs'),
uuidv4 = require('uuid/v4');
module.exports = {
up: async (queryInterface, Sequelize) => {
@@ -7,6 +8,7 @@ module.exports = {
return queryInterface.bulkInsert('organizations', [
{
id: uuidv4(),
name: 'Gopala Goshala',
short_description:
'We are focused on bringing lawful animal treatment in North India. Check out our many projects such as city water fountains for animals',
@@ -33,70 +35,71 @@ module.exports = {
primary_contact_first_name: 'Kamlesh',
primary_contact_last_name: 'Patel',
created_at: new Date(),
updated_at: new Date()
},
{
id: uuidv4(),
name: 'The Pollination Project',
short_description:
'Every day of the year, we give a grant to changemakers across the globe.',
primary_contact_email: '[email protected]',
password: hashedPass,
address: '2031 Carry Drive',
city: 'San Francisco',
country: 'USA',
state: 'CA',
zip: '92604',
primary_cause: 'Human Services',
primary_region: 'Africa',
ein: '63-6088665',
estimate_asset_value: 200000,
estimate_yearly_operating_cost: 40000,
is_nonprofit: true,
primary_contact_phone: '6254581254',
primary_contact_first_name: 'Ajay',
primary_contact_last_name: 'Datta',
created_at: new Date(),
updated_at: new Date()
},
{
id: uuidv4(),
name: 'Cancer Global Perspective',
short_description:
'Your tax-deductible donation funds lifesaving research, treatment and care — and would mean so much to someone fighting cancer. Please donate today.',
primary_contact_email: '[email protected]',
password: hashedPass,
address: '82912 Larry Page Drive',
city: 'Holmes',
country: 'USA',
state: 'AZ',
zip: '92604',
primary_cause: 'Animal',
primary_region: 'South Asia',
ein: '63-6088665',
estimate_asset_value: 200000,
estimate_yearly_operating_cost: 40000,
is_nonprofit: true,
primary_contact_phone: '6254581254',
primary_contact_first_name: 'Leo',
primary_contact_last_name: 'Rosen',
created_at: new Date(),
updated_at: new Date()
}
// ,
// {
// name: 'The Pollination Project',
// short_description:
// 'Every day of the year, we give a grant to changemakers across the globe.',
// primary_contact_email: '[email protected]',
// password: hashedPass,
// address: '2031 Carry Drive',
// city: 'San Francisco',
// country: 'USA',
// state: 'CA',
// zip: '92604',
// primary_cause: 'Human Services',
// primary_region: 'Africa',
// ein: '63-6088665',
// estimate_asset_value: 200000,
// estimate_yearly_operating_cost: 40000,
// isNonprofit: true,
// primary_contact_phone: '6254581254',
// primary_contact_first_name: 'Ajay',
// primary_contact_last_name: 'Datta',
// created_at: new Date(),
// updated_at: new Date()
// },
// {
// name: 'Cancer Global Perspective',
// short_description:
// 'Your tax-deductible donation funds lifesaving research, treatment and care — and would mean so much to someone fighting cancer. Please donate today.',
// primary_contact_email: '[email protected]',
// password: hashedPass,
// address: '82912 Larry Page Drive',
// city: 'Holmes',
// country: 'USA',
// state: 'AZ',
// zip: '92604',
// primary_cause: 'Animal',
// primary_region: 'South Asia',
// ein: '63-6088665',
// estimate_asset_value: 200000,
// estimate_yearly_operating_cost: 40000,
// isNonprofit: true,
// primary_contact_phone: '6254581254',
// primary_contact_first_name: 'Leo',
// primary_contact_last_name: 'Rosen',
// created_at: new Date(),
// updated_at: new Date()
// }
]);
},