~cytrogen/masto-fe

ref: ee702e36e58d638bcf75b2eae2ca86499693465e masto-fe/db/migrate/20200516183822_create_one_time_keys.rb -rw-r--r-- 400 bytes
ee702e36 — Claire Change follow recommendation materialized view to be faster in most cases (#26545) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

class CreateOneTimeKeys < ActiveRecord::Migration[5.2]
  def change
    create_table :one_time_keys do |t|
      t.references :device, foreign_key: { on_delete: :cascade }
      t.string :key_id, default: '', null: false, index: :unique
      t.text :key, default: '', null: false
      t.text :signature, default: '', null: false

      t.timestamps
    end
  end
end