~quam-plures-core/quam-plures/qp-bug_526380

« back to all changes in this revision

Viewing changes to inc/_core/model/__core.install.php

  • Committer: Tilman Blumenbach
  • Author(s): EdB
  • Date: 2010-06-27 09:58:00 UTC
  • mfrom: (7493.2.1 pingbacks_b_gone)
  • Revision ID: tilman@ax86.net-20100627095800-7yv2v9ywv969wpi6
Merged pingbacks_b_gone

Show diffs side-by-side

added added

removed removed

Lines of Context:
261
261
                        UNIQUE catpost ( postcat_cat_ID, postcat_post_ID )
262
262
                ) ENGINE = innodb DEFAULT CHARSET = $db_storage_charset" ),
263
263
 
264
 
        'T_comments' => array(  // Note: pingbacks no longer supported, but previous pingbacks are to be preserved in the DB
 
264
        'T_comments' => array(
265
265
                'Creating table for Comments',
266
266
                "CREATE TABLE T_comments (
267
267
                        comment_ID            int(11) unsigned NOT NULL auto_increment,
268
268
                        comment_post_ID       int(11) unsigned NOT NULL default '0',
269
 
                        comment_type          enum('comment','linkback','trackback','pingback') NOT NULL default 'comment',
 
269
                        comment_type          enum('comment','linkback','trackback') NOT NULL default 'comment',
270
270
                        comment_status        ENUM('published','deprecated','protected','private','draft','redirected') DEFAULT 'published' NOT NULL,
271
271
                        comment_author_ID     int unsigned NULL default NULL,
272
272
                        comment_author        varchar(100) NULL,