1
0
mirror of https://github.com/mastodon/mastodon synced 2024-12-03 17:28:19 +09:00
mastodon/db/migrate/20160826155805_add_superapp_to_oauth_applications.rb

6 lines
176 B
Ruby
Raw Normal View History

class AddSuperappToOauthApplications < ActiveRecord::Migration[5.0]
def change
add_column :oauth_applications, :superapp, :boolean, default: false, null: false
end
end