Skip to content

Commit

Permalink
added a table to store reported issues to propel schema
Browse files Browse the repository at this point in the history
  • Loading branch information
bradgearon committed Mar 23, 2017
1 parent d5505a4 commit f77d74e
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions propel/schema.xml
Original file line number Diff line number Diff line change
Expand Up @@ -723,6 +723,16 @@
</vendor>
</table>

<table name="issues_is" idMethod="native" phpName="Issue">
<column name="is_ID" phpName="Id" type="INTEGER" size="3" primaryKey="true" autoIncrement="true" required="true"/>
<column name="is_Number" phpName="Number" type="VARCHAR" required="true"/>
<column name="is_Closed" phpName="Closed" type="BOOLEAN" size="1" required="true" defaultValue="false" />
<column name="is_Notified" phpName="Notified" type="BOOLEAN" size="1" required="true" defaultValue="false" />
<vendor type="mysql">
<parameter name="Engine" value="MyISAM"/>
</vendor>
</table>

<!--
<table name="istlookup_lu" idMethod="native" phpName="IstlookupLu" >
<column name="lu_fam_ID" phpName="LuFamId" type="SMALLINT" size="9" primaryKey="true" required="true" defaultValue="0"/>
Expand Down

0 comments on commit f77d74e

Please sign in to comment.