Changeset 280:7e61fc49d41f

Show
Ignore:
Timestamp:
06/15/2008 03:19:00 PM (4 years ago)
Author:
Dmitry Nezhevenko <dion@…>
Branch:
default
Message:

update aliases SQL table

Location:
sql
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • sql/mysql.sql

    r270 r280  
    2424  `plugin` tinyint(4) NOT NULL, 
    2525  `storage` tinyint(4) NOT NULL, 
     26  `global` tinyint(1) NOT NULL DEFAULT '0', 
    2627  `name` varchar(50) collate utf8_bin NOT NULL, 
    2728  `value` varchar(200) collate utf8_bin NOT NULL, 
  • sql/pgsql.sql

    r270 r280  
    22  plugin smallint NOT NULL, 
    33  storage smallint NOT NULL, 
     4  global boolean NOT NULL DEFAULT false, 
    45  name varchar(50) NOT NULL, 
    56  value varchar(200) NOT NULL,