mirror of
https://github.com/internetee/registry.git
synced 2025-07-04 02:03:36 +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
|