mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-04-01 03:55:44 +00:00
10 lines
151 B
Ruby
10 lines
151 B
Ruby
class CreateWeights < ActiveRecord::Migration
|
|
def change
|
|
create_table :weights do |t|
|
|
t.integer :max
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|