about summary refs log tree commit diff
path: root/db/migrate/20200516180352_create_devices.rb
blob: 04a628a8971fba4b44a3cd2ba00d536f66cba199 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class CreateDevices < ActiveRecord::Migration[5.2]
  def change
    create_table :devices do |t|
      t.references :access_token, foreign_key: { to_table: :oauth_access_tokens, on_delete: :cascade, index: :unique }
      t.references :account, foreign_key: { on_delete: :cascade }
      t.string :device_id, default: '', null: false
      t.string :name, default: '', null: false
      t.text :fingerprint_key, default: '', null: false
      t.text :identity_key, default: '', null: false

      t.timestamps
    end
  end
end