1
0
mirror of https://github.com/funamitech/mastodon synced 2024-11-24 07:06:34 +09:00
YuruToot/db/migrate/20160826155805_add_superapp_to_oauth_applications.rb

8 lines
207 B
Ruby

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