Class var declarations did not match SQL table
This commit is contained in:
parent
067d6a72f9
commit
08ee629b92
|
@ -1,24 +1,18 @@
|
||||||
<?php
|
<?php
|
||||||
/**
|
/**
|
||||||
* Table Definition for reply
|
* Table Definition for qvitternotification
|
||||||
*/
|
*/
|
||||||
require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
|
|
||||||
|
|
||||||
class QvitterNotification extends Managed_DataObject
|
class QvitterNotification extends Managed_DataObject
|
||||||
{
|
{
|
||||||
###START_AUTOCODE
|
|
||||||
/* the code below is auto generated do not remove the above tag */
|
|
||||||
|
|
||||||
public $__table = 'qvitternotification'; // table name
|
public $__table = 'qvitternotification'; // table name
|
||||||
public $id; // int(4) primary_key not_null
|
public $id; // int(4) primary_key not_null
|
||||||
public $to_profile_id; // int(4) primary_key not_null
|
public $to_profile_id; // int(4)
|
||||||
public $from_profile_id; // int(4) primary_key not_null
|
public $from_profile_id; // int(4)
|
||||||
public $type; // varchar(7)
|
public $ntype; // varchar(7)
|
||||||
public $notice_id; // int(4) primary_key not_null
|
public $notice_id; // int(4)
|
||||||
public $date; // datetime multiple_key not_null default_0000-00-00%2000%3A00%3A00
|
public $is_seen; // int(tiny)
|
||||||
|
public $created; // datetime multiple_key not_null
|
||||||
/* the code above is auto generated do not remove the tag below */
|
|
||||||
###END_AUTOCODE
|
|
||||||
|
|
||||||
public static function schemaDef()
|
public static function schemaDef()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue
Block a user