summaryrefslogtreecommitdiff
path: root/classes/Schema_version.php
diff options
context:
space:
mode:
Diffstat (limited to 'classes/Schema_version.php')
-rw-r--r--classes/Schema_version.php22
1 files changed, 22 insertions, 0 deletions
diff --git a/classes/Schema_version.php b/classes/Schema_version.php
new file mode 100644
index 000000000..6b464c6d1
--- /dev/null
+++ b/classes/Schema_version.php
@@ -0,0 +1,22 @@
+<?php
+/**
+ * Table Definition for schema_version
+ */
+
+class Schema_version extends Memcached_DataObject
+{
+ ###START_AUTOCODE
+ /* the code below is auto generated do not remove the above tag */
+
+ public $__table = 'schema_version'; // table name
+ public $table_name; // varchar(64) primary_key not_null
+ public $checksum; // varchar(64) not_null
+ public $modified; // datetime() not_null
+
+ /* Static get */
+ function staticGet($k,$v=null)
+ { return Memcached_DataObject::staticGet('Schema_version',$k,$v); }
+
+ /* the code above is auto generated do not remove the tag below */
+ ###END_AUTOCODE
+}