DBIx-Class-Migration icon indicating copy to clipboard operation
DBIx-Class-Migration copied to clipboard

How to force `UTF8`?

Open KES777 opened this issue 4 years ago • 0 comments

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?

KES777 avatar Oct 14 '20 12:10 KES777