location

CREATE TABLE pguser (
    userid bigint NOT NULL,
    nickname character varying(50),
    gender character(1),
    birthday date,
    updatetime timestamp without time zone,
    onlinestatus integer,
    address character varying(128),
    icon character varying(255),
    vip integer,
    weibo character varying(300),
    lat integer,
    lng integer,
    forbidstatus integer,
    moodtext character varying(255),
    showloc character(1),
    location point,
    locagis geography,
    horoscope integer,
    occupation integer,
    love integer,
    dialects character varying(128),
    hometown character varying(128)
)
WITH (fillfactor='50');

  

猜你喜欢

转载自www.cnblogs.com/onephp/p/9203850.html