svn: /web/doc-editor/trunk/install/ doc-editor.sql
[email protected] (Yannick Torres)
| Newsgroups | php.doc.web |
|---|---|
| Message-ID | <[email protected]> |
yannick Tue, 19 Jul 2011 23:50:50 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=313461
Log:
Change type of value to LONGTEXT. Karma list don't stay in a text type ;)
Changed paths:
U web/doc-editor/trunk/install/doc-editor.sql
Modified: web/doc-editor/trunk/install/doc-editor.sql
===================================================================
--- web/doc-editor/trunk/install/doc-editor.sql 2011-07-19 23:45:15 UTC (rev 313460)
+++ web/doc-editor/trunk/install/doc-editor.sql 2011-07-19 23:50:50 UTC (rev 313461)
@@ -31,7 +31,7 @@
`project` varchar(255) NOT NULL,
`type` varchar(50) NOT NULL,
`field` varchar(50) NOT NULL,
- `value` text NOT NULL,
+ `value` LONGTEXT NOT NULL,
`date` datetime NOT NULL,
KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
@@ -226,4 +226,4 @@
`anonymousIdent` varchar(255) NOT NULL,
`date` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
\ No newline at end of file
+) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;