Lets come up with a list of Categories, Types, Attractions to seed if our database is reset.
We could also possibly seed our 3 User accounts, with User.level === 2, our other account info, and our hashed passwords so that if the database is reset we do not lose our admin accounts
seeds should include our hashed passwords
https://bcrypt-generator.com/
we can hash them here to be stored in the seeds.sql
we use 10 rounds of salt on our site but it shouldnt affect anything with how many you use
Lets come up with a list of Categories, Types, Attractions to seed if our database is reset. We could also possibly seed our 3 User accounts, with User.level === 2, our other account info, and our hashed passwords so that if the database is reset we do not lose our admin accounts
seeds should include our hashed passwords https://bcrypt-generator.com/ we can hash them here to be stored in the seeds.sql we use 10 rounds of salt on our site but it shouldnt affect anything with how many you use
my hash is