actualizacion schema

parent abb29817
...@@ -78,6 +78,17 @@ ...@@ -78,6 +78,17 @@
<parameter name="Engine" value="InnoDB"/> <parameter name="Engine" value="InnoDB"/>
</vendor> </vendor>
</table> </table>
<table name="campaign" phpName="Campaign" idMethod="native">
<column name="ca_id" phpName="CaId" type="INTEGER" primaryKey="true" autoIncrement="true" required="true"/>
<column name="ca_mensaje" phpName="CaMensaje" type="LONGVARCHAR" required="true"/>
<column name="ca_estado" phpName="CaEstado" type="BOOLEAN" size="1" required="true" defaultValue="false"/>
<column name="ca_eliminado" phpName="CaEliminado" type="BOOLEAN" size="1" required="true" defaultValue="false"/>
<column name="created_at" phpName="CreatedAt" type="TIMESTAMP" required="false"/>
<column name="updated_at" phpName="UpdatedAt" type="TIMESTAMP" required="false"/>
<vendor type="mysql">
<parameter name="Engine" value="InnoDB"/>
</vendor>
</table>
<table name="emailing" phpName="Emailing" idMethod="native"> <table name="emailing" phpName="Emailing" idMethod="native">
<column name="ema_id" phpName="EmaId" type="INTEGER" primaryKey="true" autoIncrement="true" required="true"/> <column name="ema_id" phpName="EmaId" type="INTEGER" primaryKey="true" autoIncrement="true" required="true"/>
<column name="ema_total" phpName="EmaTotal" type="INTEGER" required="false"/> <column name="ema_total" phpName="EmaTotal" type="INTEGER" required="false"/>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment