Help for this page

Select Code to Download


  1. or download this
    CREATE TABLE i18n (
      Id varchar(50),
    ...
    ENGINE = MyISAM
    CHARACTER SET utf8 COLLATE utf8_general_ci;
    ;
    
  2. or download this
    package Superclix::Schema::I18N;
    
    ...
    __PACKAGE__->utf8_columns(qw/Text/);
    
    1;