allpro/db/migrate/20130811184122_create_lifts.rb

14 lines
257 B
Ruby
Raw Permalink Normal View History

2013-08-12 03:31:42 -04:00
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