mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
(cherry picked from commit d18cc02f0185df39bb4213d8a63a955dfb433dcb) Re: https://github.com/openSUSE/osem/issues/2333
6 lines
210 B
Ruby
6 lines
210 B
Ruby
class RemoveArrivalDepartureFromRegistrations < ActiveRecord::Migration[5.0]
|
|
def change
|
|
remove_column :registrations, :arrival, :datetime
|
|
remove_column :registrations, :departure, :datetime
|
|
end
|
|
end
|