mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02: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
|