Sha256: 02a848f46522fc7be6e1e269c255f6de2749d2a84a85b40b53d9c975d06047b1

Contents?: true

Size: 298 Bytes

Versions: 8

Compression:

Stored size: 298 Bytes

Contents

class CreateQuestions < ActiveRecord::Migration
  def self.up
    create_table :questions do |t|
      t.integer :question_category_id
      t.text    :question
      t.text    :answer
      t.integer :position

      t.timestamps
    end
  end

  def self.down
    drop_table :questions
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
spree-faq-2.4.0 db/migrate/20090526213535_create_questions.rb
spree-faq-2.3.0 db/migrate/20090526213535_create_questions.rb
spree-faq-2.2.1 db/migrate/20090526213535_create_questions.rb
spree-faq-2.1.1 db/migrate/20090526213535_create_questions.rb
spree-faq-2.0.1 db/migrate/20090526213535_create_questions.rb
spree-faq-2.2.0 db/migrate/20090526213535_create_questions.rb
spree-faq-2.1.0 db/migrate/20090526213535_create_questions.rb
spree-faq-2.0.0 db/migrate/20090526213535_create_questions.rb