mirror of
https://github.com/internetee/registry.git
synced 2025-06-04 11:47:30 +02:00
6 lines
188 B
Ruby
6 lines
188 B
Ruby
class AddContactAndDomainStatusNotes < ActiveRecord::Migration[6.0]
|
|
def change
|
|
add_column :contacts, :status_notes, :hstore
|
|
add_column :domains, :status_notes, :hstore
|
|
end
|
|
end
|