mirror of
https://github.com/internetee/registry.git
synced 2025-05-16 09:27:19 +02:00
6 lines
183 B
Ruby
6 lines
183 B
Ruby
class AddContactAndDomainStatusNotes < ActiveRecord::Migration
|
|
def change
|
|
add_column :contacts, :status_notes, :hstore
|
|
add_column :domains, :status_notes, :hstore
|
|
end
|
|
end
|