force charset in sql file

This commit is contained in:
Manuel Raynaud
2014-01-27 16:55:34 +01:00
parent d3c276041f
commit c90c8ff9db
2 changed files with 107 additions and 103 deletions

View File

@@ -1,8 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<database defaultIdMethod="native" name="thelia">
<table name="category" namespace="Thelia\Model">
<column autoIncrement="true" name="id" primaryKey="true" required="true" type="INTEGER" />
<?xml version="1.0" encoding="UTF-8"?>
<database defaultIdMethod="native" name="thelia">
<vendor type="mysql">
<parameter name="Engine" value="InnoDB"/>
<parameter name="Charset" value="utf8"/>
</vendor>
<table name="category" namespace="Thelia\Model">
<column autoIncrement="true" name="id" primaryKey="true" required="true" type="INTEGER" />
<column name="parent" type="INTEGER" />
<column name="visible" required="true" type="TINYINT" />
<column name="position" required="true" type="INTEGER" />
<column name="title" size="255" type="VARCHAR" />