From f268cd06770e8f8ce00484619f7203e04f3ee483 Mon Sep 17 00:00:00 2001 From: rgarcia Date: Thu, 24 Nov 2016 10:56:31 +0100 Subject: [PATCH] removes question attribute from seeds --- db/dev_seeds.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/db/dev_seeds.rb b/db/dev_seeds.rb index 07594b387..5bdd51606 100644 --- a/db/dev_seeds.rb +++ b/db/dev_seeds.rb @@ -413,7 +413,6 @@ puts "Creating Poll Questions" open_at = rand(2.months.ago .. 2.months.from_now) question = Poll::Question.create!(author: author, title: Faker::Lorem.sentence(3).truncate(60), - question: Faker::Lorem.sentence(3) + "?", summary: Faker::Lorem.sentence(3), description: description, valid_answers: Faker::Lorem.words(3).join(', '),