From 4f7eae8702be28a081db05feb26366a1f83bfd90 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 19 Oct 2010 15:37:17 -0700 Subject: [PATCH] Add stub schema_version table --- classes/Schema_version.php | 22 ++++++++++++++++++++++ classes/statusnet.ini | 8 ++++++++ db/core.php | 10 ++++++++++ 3 files changed, 40 insertions(+) create mode 100644 classes/Schema_version.php diff --git a/classes/Schema_version.php b/classes/Schema_version.php new file mode 100644 index 0000000000..6b464c6d1d --- /dev/null +++ b/classes/Schema_version.php @@ -0,0 +1,22 @@ + 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'), +);