jjn1056 / DBIx-Class-Migration

Use DBIC::DeploymentHandler and DBIC::Fixtures together for a sane database versioning workflow
33 stars 41 forks source link

How to force `UTF8`? #139

Open KES777 opened 3 years ago

KES777 commented 3 years ago

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: image

is there a way to say that script is in utf8?