Files
codeocean/db/migrate/20171002131135_remove_expected_working_time.rb
2021-05-14 22:03:06 +02:00

8 lines
174 B
Ruby

# frozen_string_literal: true
class RemoveExpectedWorkingTime < ActiveRecord::Migration[4.2]
def change
remove_column :exercises, :expected_worktime_seconds
end
end