]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Add stub schema_version table
authorBrion Vibber <brion@pobox.com>
Tue, 19 Oct 2010 22:37:17 +0000 (15:37 -0700)
committerBrion Vibber <brion@pobox.com>
Tue, 19 Oct 2010 22:38:53 +0000 (15:38 -0700)
classes/Schema_version.php [new file with mode: 0644]
classes/statusnet.ini
db/core.php

diff --git a/classes/Schema_version.php b/classes/Schema_version.php
new file mode 100644 (file)
index 0000000..6b464c6
--- /dev/null
@@ -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
+}
index b57d8622631645e999a38881380e9542c1688b74..920e0157dbfa5e9a3e864f2908dc104fafd89eb7 100644 (file)
@@ -497,6 +497,14 @@ replied_id = 1
 notice_id = K
 profile_id = K
 
+[schema_version]
+table_name = 130
+checksum = 130
+modified = 384
+
+[schema_version__keys]
+table_name = K
+
 [session]
 id = 130
 session_data = 34
index ebf873504f2a6c2bd4bf313f9ea3c29a096b1180..eb90ca85fd1d6da844fa7edb2a776cd46b6b7b1a 100644 (file)
@@ -1012,3 +1012,13 @@ $schema['user_urlshortener_prefs'] = array(
         'user_urlshortener_prefs_user_id_fkey' => array('user', array('user_id' => 'id')),
     ),
 );
+
+$schema['schema_version'] = array(
+    'description' => 'To avoid checking database structure all the time, we store a checksum of the expected schema info for each table here. If it has not changed since the last time we checked the table, we can leave it as is.',
+    'fields' => array(
+        'table_name' => array('type' => 'varchar', 'length' => '64', 'not null' => true, 'description' => 'Table name'),
+        'checksum' => array('type' => 'varchar', 'length' => '64', 'not null' => true, 'description' => 'Checksum of schema array; a mismatch indicates we should check the table more thoroughly.'),
+        'modified' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was modified'),
+    ),
+    'primary key' => array('table_name'),
+);