mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-10-31 20:14:26 +00:00
12 lines
301 B
Ruby
12 lines
301 B
Ruby
|
class CreateIdentities < ActiveRecord::Migration[5.0]
|
||
|
def change
|
||
|
create_table :identities do |t|
|
||
|
t.references :user, foreign_key: { on_delete: :cascade }
|
||
|
t.string :provider, null: false, default: ''
|
||
|
t.string :uid, null: false, default: ''
|
||
|
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|