6 lines
147 B
Ruby
Executable File
6 lines
147 B
Ruby
Executable File
class AddCreatedByToUserCertifications < ActiveRecord::Migration
|
|
def change
|
|
add_column :user_certifications, :created_by, :integer
|
|
end
|
|
end
|