1
0
Fork 0
allpro/db/migrate/20130811184122_create_lifts.rb

14 lines
257 B
Ruby

class CreateLifts < ActiveRecord::Migration
def change
create_table :lifts do |t|
t.integer :parent_workout
t.string :lift_type
t.integer :sets
t.integer :repititions
t.text :comment
t.timestamps
end
end
end