Skip to content

Commit

Permalink
created and ran migration to add used_dummy_plugins boolean column to…
Browse files Browse the repository at this point in the history
… plugins
  • Loading branch information
matortheeternal committed Jan 9, 2017
1 parent fe323b0 commit 07c153b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class AddUsedDummyPluginsToPlugins < ActiveRecord::Migration
def change
add_column :plugins, :used_dummy_plugins, :boolean, default: false, null: false
end
end
3 changes: 2 additions & 1 deletion mod-picker/db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 07c153b

Please sign in to comment.