10 lines
155 B
Ruby
10 lines
155 B
Ruby
|
class CreateWorkouts < ActiveRecord::Migration
|
||
|
def change
|
||
|
create_table :workouts do |t|
|
||
|
t.datetime :date
|
||
|
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|