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.
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