foodsoft/db/migrate/20181013195028_add_confidential_to_applications.rb
2020-09-05 14:40:11 +02:00

5 lines
178 B
Ruby

class AddConfidentialToApplications < ActiveRecord::Migration[4.2]
def change
add_column :oauth_applications, :confidential, :boolean, null: false, default: true
end
end