You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
362 B
13 lines
362 B
# frozen_string_literal: true |
|
|
|
class CreateIdentities < ActiveRecord::Migration[5.2] |
|
def change |
|
create_table :identities, id: :integer do |t| |
|
t.references :user, type: :integer, foreign_key: { on_delete: :cascade } |
|
t.string :provider, null: false, default: '' |
|
t.string :uid, null: false, default: '' |
|
|
|
t.timestamps |
|
end |
|
end |
|
end
|
|
|