11 lines
210 B
Ruby
11 lines
210 B
Ruby
class CreateViajes < ActiveRecord::Migration[7.2]
|
|
def change
|
|
create_table :viajes do |t|
|
|
t.belongs_to :ruta
|
|
t.has_many :entregas
|
|
t.has_many :retiros
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|