summaryrefslogtreecommitdiff
path: root/plugins/YammerImport/classes/Yammer_notice_stub.php
diff options
context:
space:
mode:
authorBrion Vibber <brion@pobox.com>2010-09-23 12:52:58 -0700
committerBrion Vibber <brion@pobox.com>2010-09-28 07:44:23 -0700
commita78f184652beb0fc84afbbfb6ec5a407e9409cc8 (patch)
treece42f1c367d2ba5d63aa72bde3aa147a88de66d7 /plugins/YammerImport/classes/Yammer_notice_stub.php
parente8526b2e1f7ed269c84c93e72fda6c4f98e6d49b (diff)
A little more cleanup...
Diffstat (limited to 'plugins/YammerImport/classes/Yammer_notice_stub.php')
-rw-r--r--plugins/YammerImport/classes/Yammer_notice_stub.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/YammerImport/classes/Yammer_notice_stub.php b/plugins/YammerImport/classes/Yammer_notice_stub.php
index 98a5e2cf7..cc52554de 100644
--- a/plugins/YammerImport/classes/Yammer_notice_stub.php
+++ b/plugins/YammerImport/classes/Yammer_notice_stub.php
@@ -51,7 +51,7 @@ class Yammer_notice_stub extends Memcached_DataObject
/**
* Return schema definition to set this table up in onCheckSchema
*/
- static function schemaDef($field)
+ static function schemaDef()
{
return array(new ColumnDef('id', 'bigint', null,
false, 'PRI'),
@@ -73,7 +73,7 @@ class Yammer_notice_stub extends Memcached_DataObject
function table()
{
return array('id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL,
- 'json_data' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL,
+ 'json_data' => DB_DATAOBJECT_STR + DB_DATAOBJECT_NOTNULL,
'created' => DB_DATAOBJECT_STR + DB_DATAOBJECT_DATE + DB_DATAOBJECT_TIME + DB_DATAOBJECT_NOTNULL);
}