Files
old-holivud2/db/migrate/20200716103525_add_approval_fields_to_talent_releases.rb

8 lines
279 B
Ruby
Raw Normal View History

2020-07-20 13:28:40 +00:00
class AddApprovalFieldsToTalentReleases < ActiveRecord::Migration[6.0]
def change
add_column :talent_releases, :approved_by_user_name, :text
add_column :talent_releases, :approved_by_user_email, :text
add_column :talent_releases, :approved_at, :timestamp
end
end