DBIx-Class-Migration
DBIx-Class-Migration copied to clipboard
How to force `UTF8`?
My upgrade
script looks like:
BEGIN;
update opfg set name = 'ТОВ' where kod = 240;
update opfg set name = 'ФОП' where kod = 0;
update opfg set name = 'ПП' where kod = 120;
when it is done data looks like:
is there a way to say that script is in utf8
?