Inital commit

This commit is contained in:
2020-11-19 15:36:28 +01:00
parent 71f32f83d3
commit 66ce4ee218
18077 changed files with 2166122 additions and 35184 deletions

View File

@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<database defaultIdMethod="native" name="thelia"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="../../../../core/vendor/propel/propel/resources/xsd/database.xsd" >
<table name="rib_client" namespace="RibClient\Model">
<column autoIncrement="true" name="id" primaryKey="true" required="true" type="INTEGER" />
<column name="customer_id" type="INTEGER"/>
<column name="iban" type="varchar" size="255"/>
<column name="bic" type="varchar" size="255"/>
<column name="remarques" type="CLOB"/>
<column name="mode_de_reglement" type="varchar" size="255"/>
<column name="echeance" type="integer" size="3"/>
<column name="net_ou_fdm" type="varchar" size="255"/>
<foreign-key foreignTable="customer" onDelete="CASCADE" onUpdate="RESTRICT">
<reference foreign="id" local="customer_id" />
</foreign-key>
</table>
<external-schema filename="local/config/schema.xml" referenceOnly="true" />
</database>