allow review and approve

This commit is contained in:
Bilal
2020-07-07 17:19:04 +02:00
parent 19b1e75384
commit d70a19b7d5
11 changed files with 111 additions and 4 deletions

View File

@@ -0,0 +1,7 @@
class AddApprovalInfoColumnsToMedicalReleases < ActiveRecord::Migration[6.0]
def change
add_column :medical_releases, :approved_by_user_name, :text
add_column :medical_releases, :approved_by_user_email, :text
add_column :medical_releases, :approved_at, :timestamp
end
end