]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - classes/Schema_version.php
Merge branch '0.9.x' into 1.0.x
[quix0rs-gnu-social.git] / classes / Schema_version.php
1 <?php
2 /**
3  * Table Definition for schema_version
4  */
5
6 class Schema_version extends Memcached_DataObject
7 {
8     ###START_AUTOCODE
9     /* the code below is auto generated do not remove the above tag */
10
11     public $__table = 'schema_version';      // table name
12     public $table_name;                      // varchar(64)  primary_key not_null
13     public $checksum;                        // varchar(64)  not_null
14     public $modified;                        // datetime()   not_null
15
16     /* Static get */
17     function staticGet($k,$v=null)
18     { return Memcached_DataObject::staticGet('Schema_version',$k,$v); }
19
20     /* the code above is auto generated do not remove the tag below */
21     ###END_AUTOCODE
22 }