foodsoft/db/migrate/20181013195028_add_confiden...

6 lines
178 B
Ruby
Raw Permalink Normal View History

class AddConfidentialToApplications < ActiveRecord::Migration[4.2]
2018-10-13 21:53:23 +02:00
def change
add_column :oauth_applications, :confidential, :boolean, null: false, default: true
end
end