demarches-normaliennes/db/migrate/20170711125726_remove_archived_from_procedures.rb

6 lines
130 B
Ruby
Raw Normal View History

class RemoveArchivedFromProcedures < ActiveRecord::Migration[5.0]
def change
remove_column :procedures, :archived
end
end