Woops, forgot auto_increment (comes with 'serial')

There are still some classes not ported (like Yammer import)
This commit is contained in:
Mikael Nordfeldth
2013-08-21 14:33:45 +02:00
parent 4fab7a9d8b
commit 40fe10e002
6 changed files with 8 additions and 8 deletions

View File

@@ -82,7 +82,7 @@ class FeedSub extends Managed_DataObject
{
return array(
'fields' => array(
'id' => array('type' => 'int', 'not null' => true, 'description' => 'FeedSub local unique id'),
'id' => array('type' => 'serial', 'not null' => true, 'description' => 'FeedSub local unique id'),
'uri' => array('type' => 'varchar', 'not null' => true, 'length' => 255, 'description' => 'FeedSub uri'),
'huburi' => array('type' => 'text', 'description' => 'FeedSub hub-uri'),
'verify_token' => array('type' => 'text', 'description' => 'FeedSub verify-token'),