~cytrogen/masto-fe

ref: 520e00a3c1601f5661fbb90d2d2153e8a9aa9dec masto-fe/db/migrate/20210416200740_create_canonical_email_blocks.rb -rw-r--r-- 341 bytes
520e00a3 — Nick Schonning Don't run Rubocop excluded files for lint-staged (#25090) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
class CreateCanonicalEmailBlocks < ActiveRecord::Migration[6.1]
  def change
    create_table :canonical_email_blocks do |t|
      t.string :canonical_email_hash, null: false, default: '', index: { unique: true }
      t.belongs_to :reference_account, null: false, foreign_key: { to_table: 'accounts' }

      t.timestamps
    end
  end
end