mirror of
https://github.com/internetee/registry.git
synced 2025-05-16 17:37:17 +02:00
7 lines
225 B
Ruby
7 lines
225 B
Ruby
class AddFieldsForCertificate < ActiveRecord::Migration
|
|
def change
|
|
add_column :certificates, :common_name, :string
|
|
add_column :certificates, :md5, :string
|
|
add_column :certificates, :interface, :string
|
|
end
|
|
end
|