mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-28 09:24:24 +01:00
12 lines
265 B
Ruby
12 lines
265 B
Ruby
class CreateProofOfIdentityRefusals < ActiveRecord::Migration[5.2]
|
|
def change
|
|
create_table :proof_of_identity_refusals do |t|
|
|
t.belongs_to :user, foreign_key: true
|
|
t.integer :operator_id
|
|
t.text :message
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|