Show
Ignore:
Timestamp:
02/07/09 07:44:07 (3 years ago)
Author:
daris
Message:

portal: removing position field from pages db

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/portal_by_daris/install.php

    r2 r4  
    3434                                        'allow_null'    => false 
    3535                                ), 
    36                                 'position'              => array( 
    37                                         'datatype'              => 'INT(10) UNSIGNED', 
    38                                         'allow_null'    => true, 
    39                                         'default'       => 0 
    40                                 ), 
    4136                                'title'                 => array( 
    4237                                        'datatype'              => 'VARCHAR(255)', 
     
    5348                $forum_db->create_table('pages', $schema); 
    5449         
    55                 $forum_db->query('INSERT INTO '.$forum_db->prefix.'pages VALUES (0, 1, \'Example page\', \'Example content\')') or error(__FILE__, __LINE__); 
     50                $forum_db->query('INSERT INTO '.$forum_db->prefix.'pages (title, content) VALUES (\'Example page\', \'Example content\')') or error(__FILE__, __LINE__); 
    5651 
    5752