mirror of
https://github.com/internetee/registry.git
synced 2025-08-05 09:21:43 +02:00
Admin contact statuses management #2477
This commit is contained in:
parent
1f85cec9ac
commit
601592aed1
23 changed files with 335 additions and 190 deletions
5
db/migrate/20150707103241_add_statuses_to_contact.rb
Normal file
5
db/migrate/20150707103241_add_statuses_to_contact.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
class AddStatusesToContact < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :contacts, :statuses, :string, array: true
|
||||
end
|
||||
end
|
|
@ -0,0 +1,6 @@
|
|||
class AddContactAndDomainStatusNotes < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :contacts, :status_notes, :hstore
|
||||
add_column :domains, :status_notes, :hstore
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue