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:
5
db/migrate/20150206025407_add_extra_flag_for_wrestler.rb
Normal file
5
db/migrate/20150206025407_add_extra_flag_for_wrestler.rb
Normal file
@@ -0,0 +1,5 @@
|
||||
class AddExtraFlagForWrestler < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :wrestlers, :extra, :boolean
|
||||
end
|
||||
end
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user