Class: CreateAnswers
- Inherits:
-
ActiveRecord::Migration
- Object
- ActiveRecord::Migration
- CreateAnswers
- Defined in:
- lib/rails/generators/devape_survey/templates/create_answers.rb
Class Method Summary collapse
Class Method Details
.down ⇒ Object
12 13 14 |
# File 'lib/rails/generators/devape_survey/templates/create_answers.rb', line 12 def self.down drop_table :answers end |
.up ⇒ Object
2 3 4 5 6 7 8 9 10 |
# File 'lib/rails/generators/devape_survey/templates/create_answers.rb', line 2 def self.up create_table :answers do |t| t.integer :question_id t.string :content t.integer :points t. end end |