foodsoft/db/migrate/20181013195028_add_confidential_to_applications.rb
2019-04-03 17:08:38 +00:00

5 lines
173 B
Ruby

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