Files
bike-database/db/migrate/20151205223152_remove_completion_date_from_client.rb
T

6 lines
131 B
Ruby

class RemoveCompletionDateFromClient < ActiveRecord::Migration
def change
remove_column :clients, :completion_date
end
end