~openerp-commiter/openobject-server/trunk-bug-900385-aja

« back to all changes in this revision

Viewing changes to openerp/addons/base/base.sql

  • Committer: Xavier Morel
  • Date: 2012-04-20 15:22:20 UTC
  • Revision ID: xmo@openerp.com-20120420152220-1yo0rykkj45jfee0
[REM] idiotic default value for type field in ir_actions table

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
CREATE TABLE ir_actions (
60
60
    id serial NOT NULL,
61
61
    name varchar(64) DEFAULT ''::varchar NOT NULL,
62
 
    "type" varchar(32) DEFAULT 'window'::varchar NOT NULL,
 
62
    "type" varchar(32) NOT NULL,
63
63
    usage varchar(32) DEFAULT null,
64
64
    primary key(id)
65
65
);