1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-04-02 04:35:26 +00:00

Created bracket and extra flag for wrestler

This commit is contained in:
vagrant
2015-02-06 03:01:17 +00:00
parent e9cf73f9d5
commit f4059009ba
6 changed files with 144 additions and 3 deletions

View File

@@ -0,0 +1,5 @@
class AddExtraFlagForWrestler < ActiveRecord::Migration
def change
add_column :wrestlers, :extra, :boolean
end
end

View File

@@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20150202180900) do
ActiveRecord::Schema.define(version: 20150206025407) do
create_table "matches", force: true do |t|
t.integer "r_id"
@@ -90,6 +90,7 @@ ActiveRecord::Schema.define(version: 20150202180900) do
t.integer "season_loss"
t.string "criteria"
t.integer "poolNumber"
t.boolean "extra"
end
end