Ormlite support hebrew characters

Hi
When I create the tables using ormlite CreateTable im getting tables with characters set latn1_swedish_ci.

Can you please give the instruction to create the schema (using ormlite) with Hebrew character support?
Thanks

There’s no direct support in code, you’ll need to either manually set it in your RDBMS outside of OrmLite or to customize column definitions you can use extension points like CustomField declarations to specify the column collation definition.

If your RDBMS supports modifying tables after they’re created you should be able to use a Post Custom SQL Hook.

Otherwise you’ll need to apply any changes manually out-of-band.