allpro/db/migrate/20130805003121_create_workouts.rb

10 lines
155 B
Ruby
Raw Normal View History

2013-08-04 20:58:01 -04:00
class CreateWorkouts < ActiveRecord::Migration
def change
create_table :workouts do |t|
t.datetime :date
t.timestamps
end
end
end