diff --git a/mod-picker/db/migrate/20170109225157_add_used_dummy_plugins_to_plugins.rb b/mod-picker/db/migrate/20170109225157_add_used_dummy_plugins_to_plugins.rb new file mode 100644 index 000000000..ddb40e8a3 --- /dev/null +++ b/mod-picker/db/migrate/20170109225157_add_used_dummy_plugins_to_plugins.rb @@ -0,0 +1,5 @@ +class AddUsedDummyPluginsToPlugins < ActiveRecord::Migration + def change + add_column :plugins, :used_dummy_plugins, :boolean, default: false, null: false + end +end diff --git a/mod-picker/db/schema.rb b/mod-picker/db/schema.rb index 1446bfec7..291f1c73f 100644 --- a/mod-picker/db/schema.rb +++ b/mod-picker/db/schema.rb @@ -11,7 +11,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 20170102215516) do +ActiveRecord::Schema.define(version: 20170109225157) do create_table "agreement_marks", id: false, force: :cascade do |t| t.integer "correction_id", limit: 4, null: false @@ -746,6 +746,7 @@ t.integer "load_order_notes_count", limit: 4, default: 0, null: false t.boolean "has_adult_content", default: false, null: false t.boolean "is_esm", default: false + t.boolean "used_dummy_plugins", default: false, null: false end add_index "plugins", ["game_id"], name: "fk_rails_5a7ba47709", using: :btree