Skip to content
Snippets Groups Projects
Verified Commit ec414c7e authored by Antoine R. Dumont's avatar Antoine R. Dumont
Browse files

sql/118: Fix migrate script to convert bytes to ascii properly

parent 719976d8
No related branches found
No related tags found
1 merge request!55indexer.test: Simplify init step 2/3
......@@ -7,5 +7,7 @@ insert into dbversion(version, release, description)
values(118, now(), 'Work In Progress');
alter table content_mimetype
alter column mimetype set data type text,
alter column encoding set data type text;
alter column mimetype set data type text
using convert_from(mimetype, 'utf-8'),
alter column encoding set data type text
using convert_from(encoding, 'utf-8');
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment