mirror of
https://github.com/internetee/registry.git
synced 2025-06-10 06:34:46 +02:00
7 lines
179 B
Ruby
7 lines
179 B
Ruby
class AddUuidToLogRegistrantVerification < ActiveRecord::Migration[5.0]
|
|
def change
|
|
change_table 'log_registrant_verifications' do |t|
|
|
t.string :uuid
|
|
end
|
|
end
|
|
end
|