فهرست منبع

Added minor correction (id would actually be a 32 char MD5 hash)

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@20191 44c647ce-9c0f-0410-b52a-842ac1e357ba
padraic 16 سال پیش
والد
کامیت
f0d560086b
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      documentation/manual/en/module_specs/Zend_Feed_Pubsubhubbub.xml

+ 2 - 2
documentation/manual/en/module_specs/Zend_Feed_Pubsubhubbub.xml

@@ -291,7 +291,7 @@ if (!$publisher->isSuccess()) {
             
                     <programlisting language="sql"><![CDATA[
 CREATE TABLE IF NOT EXISTS `subscription` (
-  `id` bigint(20) NOT NULL AUTO_INCREMENT,
+  `id` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
   `topic_url` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
   `hub_url` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
   `created_time` datetime DEFAULT NULL,
@@ -302,7 +302,7 @@ CREATE TABLE IF NOT EXISTS `subscription` (
   `expiration_time` datetime DEFAULT NULL,
   `subscription_state` varchar(12) COLLATE utf8_unicode_ci DEFAULT NULL,
   PRIMARY KEY (`id`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
+) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
 ]]></programlisting>
 
             <para>