mirror of
https://github.com/internetee/registry.git
synced 2025-07-21 10:16:01 +02:00
Merge branch '110687814-update_values' into staging
This commit is contained in:
commit
1e19855c9d
7 changed files with 28 additions and 3 deletions
5
db/migrate/20160225113801_add_up_id_value_to_domain.rb
Normal file
5
db/migrate/20160225113801_add_up_id_value_to_domain.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
class AddUpIdValueToDomain < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :domains, :upid, :integer
|
||||
end
|
||||
end
|
5
db/migrate/20160225113812_add_up_id_value_to_contact.rb
Normal file
5
db/migrate/20160225113812_add_up_id_value_to_contact.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
class AddUpIdValueToContact < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :contacts, :upid, :integer
|
||||
end
|
||||
end
|
5
db/migrate/20160226132045_add_up_date_value_to_domain.rb
Normal file
5
db/migrate/20160226132045_add_up_date_value_to_domain.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
class AddUpDateValueToDomain < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :domains, :up_date, :timestamp
|
||||
end
|
||||
end
|
|
@ -0,0 +1,5 @@
|
|||
class AddUpDateValueToContact < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :contacts, :up_date, :timestamp
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue