1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2025-01-11 09:30:23 +00:00
mastodon/db/migrate/20200516183822_create_one_time_keys.rb
2020-06-02 19:24:53 +02:00

13 lines
369 B
Ruby

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