ChaelCodes / MeetAnotherDay

An app to help you find and meet up with your friends at conferences.
MIT License
35 stars 20 forks source link

Failure when Running Seeds #212

Closed ChaelCodes closed 2 months ago

ChaelCodes commented 3 months ago

Description

ActiveRecord::StatementInvalid: PG::UndefinedColumn: ERROR: column users.bio does not exist (ActiveRecord::StatementInvalid) LINE 1: SELECT "users".* FROM "users" WHERE "users"."bio" = $1 AND "...

The seedfile contains a reference to bio that no longer exists after we removed the name and bio columns from the users table. Just need to delete those lines from the seedfile and we'll be good.

https://github.com/ChaelCodes/MeetAnotherDay/blob/920bc15e7cc7e982dcaeefae2f1958bc383f71f4/db/seeds/development/users.seeds.rb#L4-L15