~ubuntu-branches/ubuntu/hardy/gallery2/hardy-security

« back to all changes in this revision

Viewing changes to modules/core/classes/GalleryStorage/DatabaseStorage/schema/platform/mysql/A_GalleryPluginMap_1.0.sql

  • Committer: Bazaar Package Importer
  • Author(s): Michael C. Schultheiss
  • Date: 2006-04-16 16:42:35 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20060416164235-8uy0u4bfjdxpge2o
Tags: 2.1.1-1
* New upstream release (Closes: #362936)
  + Bugfixes for Postgres7 (Closes: #359000, #362152)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
      ALTER TABLE DB_TABLE_PREFIXPluginMap
3
 
      MODIFY COLUMN DB_COLUMN_PREFIXpluginType
4
 
      varchar(
5
 
      
6
 
          32
7
 
        
8
 
      )
9
 
    
10
 
    NOT NULL
11
 
  
12
 
      ,
13
 
    
14
 
      MODIFY COLUMN DB_COLUMN_PREFIXpluginId
15
 
      varchar(
16
 
      
17
 
          32
18
 
        
19
 
      )
20
 
    
21
 
    NOT NULL
22
 
  
23
 
      ;
24
 
    
25
 
 
26
 
    UPDATE DB_TABLE_PREFIXSchema
27
 
      SET DB_COLUMN_PREFIXmajor=1,
28
 
          DB_COLUMN_PREFIXminor=1
29
 
      WHERE DB_COLUMN_PREFIXname='PluginMap' AND
30
 
          DB_COLUMN_PREFIXmajor=1 AND
31
 
          DB_COLUMN_PREFIXminor=0;
32
 
  
 
 
b'\\ No newline at end of file'