mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-10 01:01:39 -05:00
15 lines
361 B
Ruby
15 lines
361 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CreateTrips < ActiveRecord::Migration[7.2]
|
|
def change
|
|
create_table :trips do |t|
|
|
t.string :name, null: false
|
|
t.datetime :started_at, null: false
|
|
t.datetime :ended_at, null: false
|
|
t.integer :distance
|
|
t.references :user, null: false, foreign_key: true
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|