mirror of
https://github.com/internetee/registry.git
synced 2025-06-08 05:34:46 +02:00
7 lines
230 B
Ruby
7 lines
230 B
Ruby
class AddFieldsForCertificate < ActiveRecord::Migration[6.0]
|
|
def change
|
|
add_column :certificates, :common_name, :string
|
|
add_column :certificates, :md5, :string
|
|
add_column :certificates, :interface, :string
|
|
end
|
|
end
|