Removing auto generated comments

This commit is contained in:
Simon Vieille 2015-02-18 14:17:17 +01:00
parent 1aa7940054
commit 71735c752c
12 changed files with 138 additions and 224 deletions

View file

@ -29,3 +29,5 @@ propel:
generator:
defaultConnection: default
connections: [default]
objectModel:
addClassLevelComment: false

View file

@ -4,16 +4,6 @@ namespace Deblan\PowerDNS\Model;
use Deblan\PowerDNS\Model\Base\Comment as BaseComment;
/**
* Skeleton subclass for representing a row from the 'comments' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
*/
class Comment extends BaseComment
{

View file

@ -4,16 +4,6 @@ namespace Deblan\PowerDNS\Model;
use Deblan\PowerDNS\Model\Base\Cryptokey as BaseCryptokey;
/**
* Skeleton subclass for representing a row from the 'cryptokeys' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
*/
class Cryptokey extends BaseCryptokey
{

View file

@ -4,16 +4,6 @@ namespace Deblan\PowerDNS\Model;
use Deblan\PowerDNS\Model\Base\Domain as BaseDomain;
/**
* Skeleton subclass for representing a row from the 'domains' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
*/
class Domain extends BaseDomain
{

View file

@ -4,16 +4,6 @@ namespace Deblan\PowerDNS\Model;
use Deblan\PowerDNS\Model\Base\DomainMetaData as BaseDomainMetaData;
/**
* Skeleton subclass for representing a row from the 'domainmetadata' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
*/
class DomainMetaData extends BaseDomainMetaData
{

View file

@ -4,16 +4,6 @@ namespace Deblan\PowerDNS\Model;
use Deblan\PowerDNS\Model\Base\Record as BaseRecord;
/**
* Skeleton subclass for representing a row from the 'records' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
*/
class Record extends BaseRecord
{

View file

@ -4,16 +4,6 @@ namespace Deblan\PowerDNS\Model;
use Deblan\PowerDNS\Model\Base\Supermaster as BaseSupermaster;
/**
* Skeleton subclass for representing a row from the 'supermasters' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
*/
class Supermaster extends BaseSupermaster
{

View file

@ -4,16 +4,6 @@ namespace Deblan\PowerDNS\Model;
use Deblan\PowerDNS\Model\Base\Tsigkeys as BaseTsigkeys;
/**
* Skeleton subclass for representing a row from the 'tsigkeys' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
*/
class Tsigkeys extends BaseTsigkeys
{

View file

@ -4,16 +4,6 @@ namespace Deblan\PowerDNS\Model;
use Deblan\PowerDNS\Model\Base\Zone as BaseZone;
/**
* Skeleton subclass for representing a row from the 'zone' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
*/
class Zone extends BaseZone
{

View file

@ -4,16 +4,6 @@ namespace Deblan\PowerDNS\Model;
use Deblan\PowerDNS\Model\Base\ZoneRecord as BaseZoneRecord;
/**
* Skeleton subclass for representing a row from the 'zone_record' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
*/
class ZoneRecord extends BaseZoneRecord
{

View file

@ -4,16 +4,6 @@ namespace Deblan\PowerDNS\Model;
use Deblan\PowerDNS\Model\Base\ZoneVersion as BaseZoneVersion;
/**
* Skeleton subclass for representing a row from the 'zone_version' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
*/
class ZoneVersion extends BaseZoneVersion
{

View file

@ -20,6 +20,9 @@
<index-column name="domain_id"/>
<index-column name="modified_at"/>
</index>
<foreign-key foreignTable="domains" onDelete="cascade" onUpdate="cascade">
<reference local="domain_id" foreign="id"/>
</foreign-key>
</table>
<table name="cryptokeys" idMethod="native" phpName="Cryptokey">
<column name="id" phpName="Id" type="INTEGER" primaryKey="true" autoIncrement="true" required="true"/>
@ -30,6 +33,9 @@
<index name="domainidindex">
<index-column name="domain_id"/>
</index>
<foreign-key foreignTable="domains" onDelete="cascade" onUpdate="cascade">
<reference local="domain_id" foreign="id"/>
</foreign-key>
</table>
<table name="domainmetadata" idMethod="native" phpName="DomainMetaData">
<column name="id" phpName="Id" type="INTEGER" primaryKey="true" autoIncrement="true" required="true"/>
@ -40,6 +46,9 @@
<index-column name="domain_id"/>
<index-column name="kind"/>
</index>
<foreign-key foreignTable="domains" onDelete="cascade" onUpdate="cascade">
<reference local="domain_id" foreign="id"/>
</foreign-key>
</table>
<table name="domains" idMethod="native" phpName="Domain">
<column name="id" phpName="Id" type="INTEGER" primaryKey="true" autoIncrement="true" required="true"/>
@ -76,6 +85,9 @@
<index-column name="domain_id"/>
<index-column name="ordername"/>
</index>
<foreign-key foreignTable="domains" onDelete="cascade" onUpdate="cascade">
<reference local="domain_id" foreign="id"/>
</foreign-key>
</table>
<table name="supermasters" idMethod="native" phpName="Supermaster">
<column name="ip" phpName="Ip" type="VARCHAR" size="64" primaryKey="true" required="true"/>