~cytrogen/masto-fe

ref: bb98d970e3f3333f85d454bc1fd26a1b582b14d2 masto-fe/db/migrate/20220124141035_create_appeals.rb -rw-r--r-- 659 bytes
bb98d970 — Claire Merge pull request #2291 from ClearlyClaire/glitch-soc/merge-upstream 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

class CreateAppeals < ActiveRecord::Migration[6.1]
  def change
    create_table :appeals do |t|
      t.belongs_to :account, null: false, foreign_key: { on_delete: :cascade }
      t.belongs_to :account_warning, null: false, foreign_key: { on_delete: :cascade }, index: { unique: true }
      t.text :text, null: false, default: ''
      t.datetime :approved_at
      t.belongs_to :approved_by_account, foreign_key: { to_table: :accounts, on_delete: :nullify }
      t.datetime :rejected_at
      t.belongs_to :rejected_by_account, foreign_key: { to_table: :accounts, on_delete: :nullify }
      t.timestamps
    end
  end
end