Archived
2
0
Fork 0
This repository has been archived on 2024-06-09. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
mastodon/db/migrate/20180204034416_create_identities.rb

13 lines
362 B
Ruby

# 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