altocompta/html/admin/sql/account_repository/table.sql
2006-07-04 22:13:50 +00:00

44 lines
1.2 KiB
SQL

CREATE TABLE ac_dossier (
dos_id integer DEFAULT nextval('dossier_id'::text) NOT NULL,
dos_name text NOT NULL,
dos_description text,
dos_jnt_user integer DEFAULT 0
);
CREATE TABLE ac_users (
use_id integer DEFAULT nextval('users_id'::text) NOT NULL,
use_first_name text,
use_name text,
use_login text NOT NULL,
use_active integer DEFAULT 0,
use_pass text,
use_admin integer DEFAULT 0,
CONSTRAINT ac_users_use_active_check CHECK (((use_active = 0) OR (use_active = 1)))
);
CREATE TABLE jnt_use_dos (
jnt_id integer DEFAULT nextval('seq_jnt_use_dos'::text) NOT NULL,
use_id integer NOT NULL,
dos_id integer NOT NULL
);
CREATE TABLE modeledef (
mod_id integer DEFAULT nextval('s_modid'::text) NOT NULL,
mod_name text NOT NULL,
mod_desc text
);
CREATE TABLE priv_user (
priv_id integer DEFAULT nextval('seq_priv_user'::text) NOT NULL,
priv_jnt integer NOT NULL,
priv_priv text
);
CREATE TABLE theme (
the_name text NOT NULL,
the_filestyle text,
the_filebutton text
);
CREATE TABLE user_global_pref (
user_id text NOT NULL,
parameter_type text NOT NULL,
parameter_value text
);
CREATE TABLE version (
val integer
);