#!/usr/bin/env migrator.pl
# approved by zhur
# .migr
[
  {
    type => 'sql',
    db => 'ppcdict',
    time_estimate => '1 сек',
    sql => q|
        update yandex_offices set office_phone = '+7 (863) 2-688-300' where office_nick = 'rostov'
    |,
    when => 'before',
    comment => 'меняем телефон офиса Ростов-на-Дону'
  },
  {
    type => 'sql',
    db => 'ppcdict',
    time_estimate => '1 сек',
    sql => q|
        update yandex_offices set office_phone = '+7 (727) 267-75-90' where office_nick = 'kaz'
    |,
    when => 'before',
    comment => 'меняем телефон офиса Казахстан'
  }
]
