Commit 77fdd1a7da038d397689ed08da1de02acf883d49

Authored by Pius Uzamere
1 parent 5883f6f9

extra migrations

db/migrate/20091210212641_add_bloom_to_questions.rb 0 → 100644
... ... @@ -0,0 +1,9 @@
  1 +class AddBloomToQuestions < ActiveRecord::Migration
  2 + def self.up
  3 + add_column :questions, :bloom, :text
  4 + end
  5 +
  6 + def self.down
  7 + remove_column :questions, :bloom
  8 + end
  9 +end
... ...
db/migrate/20091210214537_add_randomkey_to_prompts.rb 0 → 100644
... ... @@ -0,0 +1,9 @@
  1 +class AddRandomkeyToPrompts < ActiveRecord::Migration
  2 + def self.up
  3 + add_column :prompts, :randomkey, :integer
  4 + end
  5 +
  6 + def self.down
  7 + remove_column :prompts, :randomkey
  8 + end
  9 +end
... ...