diaspora/db/migrate/20150708155747_create_scopes_tokens_join_table.rb
2016-01-04 16:49:49 +09:00

8 lines
233 B
Ruby

class CreateScopesTokensJoinTable < ActiveRecord::Migration
def change
create_table :scopes_tokens, id: false do |t|
t.belongs_to :scope, index: true
t.belongs_to :o_auth_access_token, index: true
end
end
end