http://phpbb-tw.net/phpbb/viewtopic.php?t=20916
這是我的展示頁
http://www.edna.idv.tw/phpBB/index.php
因為我是用PostgreSQL資料庫\r
所以在這把建資料庫的語法跟大家分享~
語法如下
[php]
CREATE SEQUENCE phpbb_announce_id_seq start 1 increment 1 maxvalue 2147483647 minvalue 1 cache 1;
CREATE TABLE phpbb_announce (
a_id int4 DEFAULT nextval('phpbb_announce_id_seq'::text) NOT NULL,
a_name varchar(255) NOT NULL,
a_url varchar(255) NOT NULL,
a_order int4 DEFAULT 1 NOT NULL,
CONSTRAINT phpbb_announce_pkey PRIMARY KEY (a_id)
);
[/php]


