You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
runs-rails/db/migrate/20170125212803_create_runs.rb

13 lines
244 B

class CreateRuns < ActiveRecord::Migration[5.0]
def change
create_table :runs do |t|
t.decimal :distance
t.decimal :time
t.datetime :date
t.references :user, foreign_key: true
t.timestamps
end
end
end