Generated model Answer with migration

This commit is contained in:
Prelang Builder
2014-02-27 23:58:44 +00:00
committed by u7482
parent 575b6b5b7e
commit de46fe4065
4 changed files with 29 additions and 0 deletions

3
app/models/answer.rb Normal file
View File

@@ -0,0 +1,3 @@
class Answer < ActiveRecord::Base
belongs_to :question
end

View File

@@ -0,0 +1,10 @@
class CreateAnswers < ActiveRecord::Migration
def change
create_table :answers do |t|
t.text :response
t.references :question, index: true
t.timestamps
end
end
end

9
test/fixtures/answers.yml vendored Normal file
View File

@@ -0,0 +1,9 @@
# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
one:
response: MyText
question_id:
two:
response: MyText
question_id:

View File

@@ -0,0 +1,7 @@
require 'test_helper'
class AnswerTest < ActiveSupport::TestCase
# test "the truth" do
# assert true
# end
end