1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00
mastodon/db/migrate/20160314164231_add_owner_to_application.rb

12 lines
333 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddOwnerToApplication < ActiveRecord::Migration[4.2]
2016-03-14 09:49:13 -07:00
def change
change_table(:oauth_applications, bulk: true) do |t|
t.column :owner_id, :integer, null: true
t.column :owner_type, :string, null: true
end
2016-03-14 09:49:13 -07:00
add_index :oauth_applications, [:owner_id, :owner_type]
end
end