8 lines
219 B
Ruby
8 lines
219 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 :token, index: true
|
|
end
|
|
end
|
|
end
|