mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 11:44:02 +00:00
13 lines
353 B
Ruby
13 lines
353 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ChangeArrivalRegistrationsDateToDatetime < ActiveRecord::Migration
|
|
def up
|
|
change_column :registrations, :arrival, :datetime
|
|
change_column :registrations, :departure, :datetime
|
|
end
|
|
|
|
def down
|
|
change_column :registrations, :arrival, :date
|
|
change_column :registrations, :departure, :date
|
|
end
|
|
end
|