|
From: Wesley L. R. <we...@cm...> - 2009-05-12 17:12:05
|
Hi all
I'm not that familiar with postgres and need a little help so that my
project can support it properly. I need to make sure that my create
table statement will work, after that Drupal's db abstraction layer will
handle all other calls correctly. How would you rework this to conform
to postgres? or is it fine the way it is?
CREATE TABLE spamicide (
form_id varchar(128) NOT NULL,
form_field varchar(64) NOT NULL default 'feed_me',
enabled tinyint NOT NULL default 0,
removable tinyint NOT NULL default 1,
PRIMARY KEY (form_id)
);
TIA
Wes
|