Current File : /home/jvzmxxx/wiki1/extensions/SocialProfile/UserProfile/user_profile.postgres.sql
-- Postgres version

CREATE TABLE user_profile (
  up_user_id           INTEGER      NOT NULL  DEFAULT 0 PRIMARY KEY,
  up_location_city     TEXT,
  up_location_state    TEXT,
  up_location_country  TEXT,
  up_hometown_city     TEXT,
  up_hometown_state    TEXT,
  up_hometown_country  TEXT,
  up_birthday          DATE,
  up_relationship      INTEGER      NOT NULL  DEFAULT 0,
  up_occupation        TEXT                   DEFAULT '',
  up_companies         TEXT,
  up_about             TEXT,
  up_places_lived      TEXT,
  up_schools           TEXT,
  up_websites          TEXT,
  up_movies            TEXT,
  up_books             TEXT,
  up_magazines         TEXT,
  up_music             TEXT,
  up_tv                TEXT,
  up_drinks            TEXT,
  up_snacks            TEXT,
  up_video_games       TEXT,
  up_interests         TEXT,
  up_quotes            TEXT,
  up_custom_1          TEXT,
  up_custom_2          TEXT,
  up_custom_3          TEXT,
  up_custom_4          TEXT,
  up_custom_5          TEXT,
  up_last_seen         TIMESTAMPTZ  NOT NULL  DEFAULT now(),
  up_type              INTEGER      NOT NULL  DEFAULT 1
);