~cytrogen/masto-fe

ref: 67055b034300393bd9a345bc057e86baa848ae35 masto-fe/db/migrate/20200518083523_create_encrypted_messages.rb -rw-r--r-- 566 bytes
67055b03 — Claire Fix import order inconsistencies (#2289) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class CreateEncryptedMessages < ActiveRecord::Migration[5.2]
  def change
    create_table :encrypted_messages do |t|
      t.references :device, foreign_key: { on_delete: :cascade }
      t.references :from_account, foreign_key: { to_table: :accounts, on_delete: :cascade }
      t.string :from_device_id, default: '', null: false
      t.integer :type, default: 0, null: false
      t.text :body, default: '', null: false
      t.text :digest, default: '', null: false
      t.text :message_franking, default: '', null: false

      t.timestamps
    end
  end
end