diff --git a/db/seeds.rb b/db/seeds.rb index 3af6183..c16db2e 100644 --- a/db/seeds.rb +++ b/db/seeds.rb @@ -10,3 +10,13 @@ User.create(email: "foo@example.com", password_confirmation: "123qweASD", confirmed_at: Time.current, admin: true) + +Conference.create( + title: "TestFest", + email: "foo@example.com", + host_name: "clarion.openfest.test", + description: "Test Conference", + start_date: Date.today, + end_date: Date.today, + planned_cfp_end_date: Date.today.prev_day +) \ No newline at end of file