diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-09-11 19:14:34 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-09-11 19:14:34 +0000 |
commit | 2ed2c5f9f9a92f07abe705ff562150772613f9c2 (patch) | |
tree | 1371e53e6c57ff94060d8329682292bbfcc817b6 /modules/system/system.schema | |
parent | f82029a2d9f7642f2e437bc3d82bc873b2ea945e (diff) | |
download | brdo-2ed2c5f9f9a92f07abe705ff562150772613f9c2.tar.gz brdo-2ed2c5f9f9a92f07abe705ff562150772613f9c2.tar.bz2 |
#173982 by pwolanin and chx: fix schema inconsistencies between a fresh Drupal 6 install and a Drupal 5 upgraded to Drupal 6
Diffstat (limited to 'modules/system/system.schema')
-rw-r--r-- | modules/system/system.schema | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/modules/system/system.schema b/modules/system/system.schema index a3ee189b0..d25527a96 100644 --- a/modules/system/system.schema +++ b/modules/system/system.schema @@ -163,14 +163,6 @@ function system_schema() { 'primary key' => array('mlid'), ); - $schema['sequences'] = array( - 'fields' => array( - 'name' => array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => ''), - 'id' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0) - ), - 'primary key' => array('name'), - ); - $schema['sessions'] = array( 'fields' => array( 'uid' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE), |