DROP TABLE growthfundgroup;
CREATE TABLE growthfundgroup (
group_id integer NOT NULL,
server_id text DEFAULT ''::text,
sell smallint DEFAULT 0,
title integer DEFAULT 0,
price integer NOT NULL,
open_level integer DEFAULT 0,
open_mission text DEFAULT '',
banner integer DEFAULT 0,
bg text DEFAULT '',
note text DEFAULT ''
);

REVOKE ALL on growthfundgroup from PUBLIC;
GRANT ALL on growthfundgroup to postgres;
GRANT ALL on growthfundgroup to spiritking;
INSERT INTO growthfundgroup VALUES (1,'-1',1,1097,299,10,'1633',1137,'gfundbanner','');
