Database tables: Perbedaan revisi

(Created page with "{{#apGetSQL:select rec from ( select tablename, schema, format ('<h3>%s</h3> <P>%s</p> <dt>Schema</dt><dd>%s</dd> CREATE TABLE %s ( %s );',tablename, description, schema, ta...")
 
(Tidak ada perbedaan)

Revisi terkini pada 25 Februari 2014 10.30

Daftar isi

accesslog

Track web access

Schema
backoffice

CREATE TABLE accesslog (
   sessionstart timestamp without time zone NOT NULL DEFAULT now(),
   screeny integer,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('backoffice.accesslog_id_seq'::regclass),
   sessionid character varying,
   userid integer,
   httpuseragent text,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer,
   del boolean NOT NULL DEFAULT false,
   sessionend timestamp without time zone,
   screenx integer
);

adminlevels

Spatial administrative unit levels (province, district etc)

Schema
reference

CREATE TABLE adminlevels (
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   name character varying[] NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.adminlevels_id_seq'::regclass),
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   createdby integer NOT NULL REFERENCES users
);

afkir

Culling activities

Schema
data

CREATE TABLE afkir (
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   createdby integer NOT NULL REFERENCES users,
   msgid bigint NOT NULL,
   locationid integer NOT NULL REFERENCES locations,
   jumlah integer NOT NULL,
   speciesid integer NOT NULL REFERENCES species,
   programafkirid integer NOT NULL REFERENCES programafkir,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.afkir_id_seq'::regclass)
);

ages

Animal age categories

Schema
reference

CREATE TABLE ages (
   modifiedon timestamp without time zone,
   name character varying[] NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.ages_id_seq'::regclass),
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   del boolean NOT NULL DEFAULT false,
   modifiedby integer REFERENCES users,
   createdby integer NOT NULL REFERENCES users
);

ageunits

Units for age measurement

Schema
reference

CREATE TABLE ageunits (
   code character varying NOT NULL,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL REFERENCES users,
   name character varying[] NOT NULL,
   modifiedon timestamp without time zone,
   days integer,
   del boolean NOT NULL DEFAULT false,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.ageunits_id_seq'::regclass),
   modifiedby integer REFERENCES users
);

aireportanimals

Schema
data

CREATE TABLE aireportanimals (
   userid integer NOT NULL REFERENCES users,
   reportdate timestamp without time zone NOT NULL DEFAULT now(),
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.aireportanimals_id_seq'::regclass),
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   totaldead integer NOT NULL,
   speciesid integer NOT NULL REFERENCES species,
   aireportsid integer NOT NULL REFERENCES aireports,
   msgid bigint NOT NULL
);

aireports

Schema
data

CREATE TABLE aireports (
   modifiedby integer REFERENCES users,
   productionsystemid integer NOT NULL REFERENCES productionsystems,
   backyard boolean NOT NULL DEFAULT true,
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   caseid integer NOT NULL REFERENCES cases,
   modifiedon timestamp without time zone,
   msgid bigint NOT NULL,
   userid integer NOT NULL REFERENCES users,
   reportdate timestamp without time zone NOT NULL DEFAULT now(),
   del boolean NOT NULL DEFAULT false,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.aireports_id_seq'::regclass)
);

alasanpenolakan

alasan penolakan pemotongan

Schema
reference

CREATE TABLE alasanpenolakan (
   modifiedby integer,
   id integer PRIMARY KEY NOT NULL,
   name character varying[] NOT NULL,
   code character varying,
   createdby integer NOT NULL,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false
);

animal_types

Animal type classification for slaughter and population

Schema
reference

CREATE TABLE animal_types (
   age integer REFERENCES ages,
   productive boolean,
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   name character varying[] NOT NULL,
   population boolean NOT NULL DEFAULT true,
   origin at_origin,
   purpose at_purpose,
   sex at_sex,
   species integer REFERENCES species,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.animal_types_id_seq'::regclass),
   code character varying UNIQUE NOT NULL,
   hiercode character varying UNIQUE,
   slaughter boolean NOT NULL DEFAULT false
);

animalid

Schema
backoffice

CREATE TABLE animalid (
   id integer
);

animals

List of animal that registered by Satgas PMK

Schema
data

CREATE TABLE animals (
   createdby integer NOT NULL REFERENCES users,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.animals_id_seq'::regclass),
   total integer NOT NULL,
   farmer_id integer NOT NULL REFERENCES farmers,
   status_id integer NOT NULL REFERENCES status_pmk,
   species_id integer NOT NULL REFERENCES species,
   visitor_id integer NOT NULL REFERENCES farm_visits,
   signs integer[],
   del boolean NOT NULL DEFAULT false,
   createdon timestamp without time zone DEFAULT CURRENT_TIMESTAMP,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users
);

animals

Animals in a laboratory submission. On submission may include several animals from several different owners

Schema
lab

CREATE TABLE animals (
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   sexid integer REFERENCES sex,
   speciesid integer NOT NULL REFERENCES species,
   animalid bigint REFERENCES hewan,
   ownerid integer REFERENCES owners,
   animalident character varying NOT NULL,
   labsubmissionid integer NOT NULL REFERENCES labsubmissions,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('lab.animals_id_seq'::regclass),
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   age double precision,
   msgid bigint,
   ageunitsid integer REFERENCES ageunits
);

antemortem

Pemeriksaan antemortem di RPH

Schema
data

CREATE TABLE antemortem (
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.antemortem_id_seq'::regclass),
   reportdate timestamp without time zone NOT NULL DEFAULT now(),
   skkh text,
   idpemilik integer NOT NULL REFERENCES users,
   identifikasi character varying NOT NULL,
   animaltypeid integer NOT NULL REFERENCES animal_types,
   iddiagnosa integer NOT NULL REFERENCES diseases,
   idsigns integer[] NOT NULL,
   idkeputusanam integer NOT NULL REFERENCES keputusanam,
   infrastructureid integer NOT NULL REFERENCES infrastructure,
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   msgid bigint NOT NULL
);

apifields

Schema
metadata

CREATE TABLE apifields (
   paramtypeid integer REFERENCES apiparamtypes,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp with time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp with time zone,
   del boolean NOT NULL DEFAULT false,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('apifields_id_seq'::regclass),
   apiid integer NOT NULL REFERENCES apis,
   name character varying NOT NULL
);

apioperations

Schema
reference

CREATE TABLE apioperations (
   name character varying NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('apioperations_id_seq'::regclass),
   modifiedon timestamp with time zone,
   modifiedby integer REFERENCES users,
   createdon timestamp with time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL REFERENCES users,
   del boolean NOT NULL DEFAULT false
);

apiparamtypes

Schema
reference

CREATE TABLE apiparamtypes (
   regex character varying NOT NULL,
   modifiedby integer REFERENCES users,
   modifiedon timestamp with time zone,
   del boolean NOT NULL DEFAULT false,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp with time zone NOT NULL DEFAULT now(),
   name character varying NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('apiparamtypes_id_seq'::regclass)
);

apis

Schema
metadata

CREATE TABLE apis (
   permissionid integer NOT NULL REFERENCES permission_types,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('apis_id_seq'::regclass),
   operationid integer NOT NULL REFERENCES apioperations,
   createdon timestamp with time zone NOT NULL DEFAULT now(),
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp with time zone,
   createdby integer NOT NULL REFERENCES users,
   description character varying NOT NULL,
   name character varying NOT NULL,
   modifiedby integer REFERENCES users
);

apisql

Schema
metadata

CREATE TABLE apisql (
   createdby integer NOT NULL REFERENCES users,
   modifiedby integer REFERENCES users,
   modifiedon timestamp with time zone,
   del boolean NOT NULL DEFAULT false,
   serverid integer NOT NULL REFERENCES servers,
   sql character varying NOT NULL,
   natorder integer NOT NULL DEFAULT 1,
   apiid integer NOT NULL REFERENCES apis,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('apisql_id_seq'::regclass),
   createdon timestamp with time zone NOT NULL DEFAULT now()
);

app_downloads

This table is for logging downloads. This is the only table that the app_downloads user can actually do anything other than read.

Schema
metadata

CREATE TABLE app_downloads (
   createdby integer NOT NULL DEFAULT 1,
   modifiedby integer,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('metadata.app_downloads_id_seq'::regclass),
   userid integer NOT NULL,
   reportid integer NOT NULL,
   outcome character varying,
   createdon timestamp without time zone NOT NULL DEFAULT now()
);

app_projects

This table holds project definitions for delivery by the app.php action

Schema
metadata

CREATE TABLE app_projects (
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('metadata.app_projects_id_seq'::regclass),
   name character varying[] NOT NULL,
   description character varying[] NOT NULL,
   projectdefinition json,
   createdby integer NOT NULL DEFAULT 1,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false
);

app_reports

This field holds the full json string for the app download.

Schema
metadata

CREATE TABLE app_reports (
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('metadata.app_reports_id_seq'::regclass),
   modifiedon timestamp without time zone,
   name character varying[] NOT NULL,
   modifiedby integer,
   del boolean NOT NULL DEFAULT false,
   description character varying[] NOT NULL,
   reportdefinition json,
   createdby integer NOT NULL DEFAULT 1,
   createdon timestamp without time zone NOT NULL DEFAULT now()
);

app_reports

This table holds reports for delivery by the app.php action

Schema
metadata

CREATE TABLE app_reports (
   reportdefinition json,
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('metadata.app_reports_id_seq'::regclass),
   name character varying[] NOT NULL,
   description character varying[] NOT NULL,
   createdby integer NOT NULL DEFAULT 1
);

app_static

This table holds static data for delivery by the app.php action

Schema
metadata

CREATE TABLE app_static (
   sql character varying,
   version integer NOT NULL DEFAULT 1,
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL DEFAULT 1,
   description character varying[] NOT NULL,
   name character varying[] NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('metadata.app_static_id_seq'::regclass)
);

apphelp

Schema
reference

CREATE TABLE apphelp (
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.apphelp_id_seq'::regclass),
   appid integer NOT NULL DEFAULT 1,
   pageid integer NOT NULL,
   pageref character varying,
   help character varying[],
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp with time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp with time zone,
   del boolean NOT NULL DEFAULT false
);

asalbibit

Origin of seed for forage crops

Schema
reference

CREATE TABLE asalbibit (
   id integer NOT NULL,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL,
   code character varying,
   name character varying[] NOT NULL,
   modifiedby integer,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false
);

asuransihewan

Events table for an individual animal, used to store a range of different event types

Schema
data

CREATE TABLE asuransihewan (
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.asuransihewan_id_seq'::regclass),
   reportdate timestamp without time zone NOT NULL DEFAULT now(),
   idhewan bigint REFERENCES hewan,
   idstatusasuransi integer REFERENCES statusasuransi,
   nomor numeric NOT NULL,
   masaawal date,
   masaakhir date,
   nilai bigint NOT NULL,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   msgid bigint NOT NULL
);

audit_trail

Audit trail to log user model activity

Schema
backoffice

CREATE TABLE audit_trail (
   user_name character varying(50),
   model_id character varying(255),
   field character varying(50),
   model character varying(100),
   new_value character varying,
   action character varying(200),
   user_id integer REFERENCES users,
   old_value character varying,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('audit_trail_id_seq'::regclass),
   stamp timestamp without time zone DEFAULT CURRENT_TIMESTAMP,
   browser character varying(255),
   url_referer character varying(150),
   ip_address character varying(25)
);

audit_trail_detail

Audit trail detail to log model activity

Schema
backoffice

CREATE TABLE audit_trail_detail (
   model_id character varying(255),
   field character varying(255),
   model character varying(100),
   stamp timestamp without time zone DEFAULT CURRENT_TIMESTAMP,
   user_id integer REFERENCES users,
   audit_trail_id integer REFERENCES audit_trail,
   action character varying(255),
   new_value character varying,
   old_value character varying,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('audit_trail_detail_id_seq'::regclass),
   ip_address character varying(25),
   url_referer character varying(150),
   browser character varying(255),
   user_name character varying(50)
);

auth_assignment

Schema
backoffice

CREATE TABLE auth_assignment (
   data text,
   itemname character varying(64) PRIMARY KEY NOT NULL,
   userid character varying(64) PRIMARY KEY NOT NULL,
   bizrule text
);

auth_item

Schema
backoffice

CREATE TABLE auth_item (
   data text,
   description text,
   bizrule text,
   type integer NOT NULL,
   name character varying(64) PRIMARY KEY NOT NULL
);

auth_item_child

Schema
backoffice

CREATE TABLE auth_item_child (
   child character varying(64) NOT NULL,
   parent character varying(64) NOT NULL
);

batch

Schema
data

CREATE TABLE batch (
   populasi_awal integer NOT NULL,
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone DEFAULT CURRENT_TIMESTAMP,
   createdby integer NOT NULL REFERENCES users,
   populasi_akhir integer,
   tanggalakhir date,
   tanggalmulai date NOT NULL,
   idspecies integer NOT NULL REFERENCES species,
   idfarm integer NOT NULL REFERENCES farms,
   idbatch character varying(255) NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('batch_id_seq'::regclass)
);

bcs

Reference table for the BCS categories and the corresponding intervals

Schema
reference

CREATE TABLE bcs (
   modifiedby integer REFERENCES users,
   nilai character varying NOT NULL,
   code character varying NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.bcs_id_seq'::regclass),
   del boolean NOT NULL DEFAULT false,
   createdby integer NOT NULL REFERENCES users,
   modifiedon timestamp without time zone,
   createdon timestamp without time zone NOT NULL DEFAULT now()
);

bmindotempprov

Schema
backoffice

CREATE TABLE bmindotempprov (
   centroid public.geometry(Point,4326),
   createdby integer,
   code locationcode,
   centroid_proj public.geometry(Point,3857),
   temp boolean,
   geom_proj public.geometry(MultiPolygon,3857),
   comment text,
   del boolean,
   modifiedon timestamp without time zone,
   modifiedby integer,
   createdon timestamp without time zone,
   bpscode character varying,
   level integer,
   id integer,
   validfrom date,
   validto date,
   name character varying,
   geom public.geometry(MultiPolygon,4326)
);

brewerpalettes

Colour definitions for charts

Schema
reference

CREATE TABLE brewerpalettes (
   code character varying NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.brewerpalettes_id_seq'::regclass),
   name character varying[] NOT NULL,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false
);

brosur

Schema
backoffice

CREATE TABLE brosur (
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('brosur_id_seq'::regclass),
   title character varying(255) NOT NULL,
   cover_image character varying(255),
   document character varying(255),
   description text,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   del boolean NOT NULL DEFAULT false
);

businessrules

Business rules definining custom actions to be taken during data processing

Schema
backoffice

CREATE TABLE businessrules (
   sql character varying,
   createdby integer NOT NULL,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer,
   modifiedon timestamp without time zone,
   ruleorder integer,
   caller character varying,
   hook hook,
   description character varying,
   name character varying,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('backoffice.businessrules_id_seq1'::regclass),
   del boolean NOT NULL DEFAULT false,
   rulefunction character varying
);

businessrulesold

Schema
backoffice

CREATE TABLE businessrulesold (
   caller character varying,
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL REFERENCES users,
   sql character varying,
   rulefunction character varying,
   ruleorder integer,
   hook hook,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('backoffice.businessrules_id_seq'::regclass)
);

cadrereports

A dummy table for testing of the spreadsheet parsing

Schema
data

CREATE TABLE cadrereports (
   msgid character varying NOT NULL,
   reportdate date NOT NULL,
   createdby integer NOT NULL,
   signids integer[],
   syndrome integer REFERENCES syndromes,
   location integer NOT NULL REFERENCES locations,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.cadrereports_id_seq'::regclass),
   createdon timestamp with time zone NOT NULL DEFAULT now(),
   numcases integer NOT NULL,
   speciesid integer NOT NULL REFERENCES species,
   modifiedby integer,
   modifiedon timestamp with time zone NOT NULL DEFAULT now()
);

cadreresponses

A dummy table for testing of the spreadsheet parsing

Schema
data

CREATE TABLE cadreresponses (
   responsedate date NOT NULL,
   otherdiagnosis character varying,
   createdon timestamp with time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL,
   modifiedon timestamp with time zone NOT NULL DEFAULT now(),
   modifiedby integer,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.cadreresponses_id_seq'::regclass),
   caseid parentlink NOT NULL REFERENCES cadrereports,
   msgid character varying NOT NULL,
   diagnosis integer[] NOT NULL
);

case_animals

Individual animals in a disease case

Schema
data

CREATE TABLE case_animals (
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL REFERENCES users,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.case_animals_id_seq'::regclass),
   msgid bigint,
   idhewan integer NOT NULL REFERENCES hewan,
   idcase integer NOT NULL REFERENCES cases,
   del boolean DEFAULT false
);

caseimages

Images from a disease case

Schema
data

CREATE TABLE caseimages (
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   caseid integer REFERENCES cases,
   msgid bigint NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.caseimages_id_seq'::regclass),
   del boolean NOT NULL DEFAULT false,
   image character varying NOT NULL,
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now()
);

caseresults

Outcome of a case (resolved, died, still sick)

Schema
data

CREATE TABLE caseresults (
   msgid bigint NOT NULL,
   userid integer NOT NULL REFERENCES users,
   reportdate timestamp without time zone NOT NULL DEFAULT now(),
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.caseresults_id_seq'::regclass),
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedon timestamp without time zone,
   jumlah integer,
   del boolean NOT NULL DEFAULT false,
   modifiedby integer REFERENCES users,
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   result integer NOT NULL REFERENCES caseresulttypes,
   caseid integer NOT NULL REFERENCES cases
);

caseresulttypes

Outcomes of clinical cases

Schema
reference

CREATE TABLE caseresulttypes (
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   code character varying,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.caseresulttypes_id_seq'::regclass),
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   name character varying[] NOT NULL,
   del boolean NOT NULL DEFAULT false
);

cases

Master table for all field disease cases

Schema
data

CREATE TABLE cases (
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.cases_id_seq'::regclass),
   del boolean NOT NULL DEFAULT false,
   validationby integer REFERENCES users,
   validationon timestamp without time zone,
   validation boolean NOT NULL DEFAULT false,
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   userid integer NOT NULL REFERENCES users,
   locationid integer NOT NULL REFERENCES locations,
   msgid bigint NOT NULL,
   reportdate timestamp without time zone NOT NULL DEFAULT now()
);

coldstorage

Schema
data

CREATE TABLE coldstorage (
   nkv character varying,
   statuskepememilikan integer NOT NULL,
   operationalend_date date,
   chiller_ton double precision,
   coldstorage_ton double precision,
   idrphu integer,
   createdby integer NOT NULL,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('coldstorage_id_seq'::regclass),
   idinfra integer NOT NULL
);

coldstorage_stock

Schema
data

CREATE TABLE coldstorage_stock (
   stockin double precision NOT NULL,
   msgid bigint NOT NULL,
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL,
   endstock double precision NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('coldstorage_stock_id_seq'::regclass),
   idcs integer NOT NULL,
   producttypes integer,
   stockout double precision NOT NULL
);

compartement_negativereports

Schema
data

CREATE TABLE compartement_negativereports (
   reportdate timestamp without time zone NOT NULL DEFAULT now(),
   userid integer NOT NULL REFERENCES users,
   msgid bigint NOT NULL,
   checked boolean,
   del boolean NOT NULL DEFAULT false,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('compartement_negativereports_id_seq'::regclass)
);

compartment_disease_cases

Schema
data

CREATE TABLE compartment_disease_cases (
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('compartment_disease_cases_id_seq'::regclass),
   persentase integer,
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   createdby integer NOT NULL REFERENCES users,
   cases integer NOT NULL,
   farmid integer NOT NULL REFERENCES farms,
   signsid integer[] NOT NULL,
   diagnosisid integer[] NOT NULL,
   diseaseid integer,
   msgid bigint NOT NULL,
   userid integer NOT NULL REFERENCES users,
   reportdate timestamp without time zone NOT NULL DEFAULT now()
);

containershipment

Schema
data

CREATE TABLE containershipment (
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp with time zone,
   modifiedby integer REFERENCES users,
   createdon timestamp with time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL REFERENCES users,
   msgid bigint NOT NULL,
   total integer NOT NULL,
   kondisikontainerid integer REFERENCES kondisikontainer,
   jeniskontainerid integer REFERENCES jeniskontainer,
   stocktakeid integer REFERENCES stocktake,
   receiptid integer REFERENCES receipt,
   shipmentid integer REFERENCES shipments,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.containershipment_id_seq'::regclass)
);

dashboard_report

Schema
backoffice

CREATE TABLE dashboard_report (
   sql text,
   createdon timestamp with time zone,
   modifiedon timestamp with time zone,
   createdby integer,
   del boolean,
   active boolean,
   order integer,
   modelid integer,
   name character varying[],
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('backoffice.dashboard_report_id_seq1'::regclass),
   jsonobj json,
   typereport text,
   modifiedby integer
);

dashboard_report_user

Schema
backoffice

CREATE TABLE dashboard_report_user (
   id_user integer,
   id_report integer[],
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('backoffice.dashboard_report_user_id_seq'::regclass)
);

dashboard_widget

Schema
backoffice

CREATE TABLE dashboard_widget (
   order integer,
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   del boolean NOT NULL DEFAULT false,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('backoffice.dashboard_widget_id_seq'::regclass),
   userid integer NOT NULL REFERENCES users,
   reportid integer NOT NULL REFERENCES reports,
   widgettype character varying DEFAULT 'widget'::character varying,
   modifiedon timestamp with time zone,
   modifiedby integer,
   createdon timestamp with time zone NOT NULL DEFAULT now()
);

datatables

Schema
metadata

CREATE TABLE datatables (
   displayname character varying[] NOT NULL,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   tblname character varying UNIQUE NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('metadata.datatables_id_seq'::regclass),
   createdby integer NOT NULL DEFAULT 1,
   modifiedon timestamp without time zone,
   modifiedby integer,
   del boolean NOT NULL DEFAULT false,
   parenttbl integer REFERENCES datatables
);

daterangetypes

Pre-defined date ranges for reporting

Schema
reference

CREATE TABLE daterangetypes (
   createdby integer NOT NULL DEFAULT 1,
   modifiedon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer DEFAULT 1,
   del boolean NOT NULL DEFAULT false,
   startdate character varying,
   enddate character varying,
   sortorder integer,
   description character varying DEFAULT '{"", ""}'::character varying,
   sql text,
   name character varying[] UNIQUE NOT NULL DEFAULT '{"",""}'::character varying[],
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.daterangetypes_id_seq'::regclass),
   createdon timestamp without time zone NOT NULL DEFAULT now()
);

deleted_vaccination_logs

Logs of deleted vaccination individu

Schema
data

CREATE TABLE deleted_vaccination_logs (
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('deleted_vaccination_logs_id_seq'::regclass),
   deletedat timestamp without time zone DEFAULT CURRENT_TIMESTAMP,
   deletedby integer NOT NULL REFERENCES users,
   vaccination_id integer NOT NULL REFERENCES vaccination_individu,
   description character varying(255)
);

deskripsihewan

Description of an animal for individual animal identification

Schema
data

CREATE TABLE deskripsihewan (
   warna integer REFERENCES warna,
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   tanduk character varying,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.deskripsihewan_id_seq'::regclass),
   idhewan bigint REFERENCES hewan,
   cap character varying
);

device_token_users

Schema
backoffice

CREATE TABLE device_token_users (
   createdby integer NOT NULL REFERENCES users,
   endpoint character varying(255) NOT NULL,
   token character varying(255) NOT NULL,
   userid integer NOT NULL REFERENCES users,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('device_token_users_id_seq'::regclass),
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now()
);

diagnoses

Definitive diagnosis for cases. May be submitted as part of lab submission or by field SMS.

Schema
data

CREATE TABLE diagnoses (
   del boolean NOT NULL DEFAULT false,
   msgid bigint NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.diagnoses_id_seq'::regclass),
   caseid integer NOT NULL REFERENCES cases,
   diseaseid integer NOT NULL REFERENCES diseases,
   labsubmissionid integer REFERENCES labsubmissions,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone
);

disease_details

Schema
reference

CREATE TABLE disease_details (
   createdby integer NOT NULL REFERENCES users,
   species integer[],
   name character varying[] NOT NULL,
   other_names character varying[],
   description character varying[],
   del boolean NOT NULL DEFAULT false,
   diseaseid integer REFERENCES diseases,
   prevention character varying[],
   treatment character varying[],
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.disease_details_id_seq'::regclass),
   diagnosis character varying[],
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   createdon timestamp without time zone NOT NULL DEFAULT now()
);

disease_parent_species

Schema
reference

CREATE TABLE disease_parent_species (
   disease_id integer NOT NULL REFERENCES diseases,
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   parent_species_id integer NOT NULL REFERENCES parent_species,
   modifiedby integer REFERENCES users,
   createdby integer NOT NULL REFERENCES users,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('disease_parent_species_id_seq'::regclass)
);

disease_status

Schema
reference

CREATE TABLE disease_status (
   disease_isikhnas_id integer NOT NULL REFERENCES diseases,
   location_id integer NOT NULL REFERENCES locations,
   is_special_condition boolean NOT NULL DEFAULT false,
   status character varying(10) NOT NULL,
   disease_id integer NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('disease_status_id_seq'::regclass)
);

diseaseevents

Master table of major disease events, used to group cases and programs

Schema
data

CREATE TABLE diseaseevents (
   enddate date,
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL REFERENCES users,
   area integer[],
   diseaseid integer REFERENCES diseases,
   startdate date NOT NULL DEFAULT now(),
   name character varying[] NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.diseaseevents_id_seq'::regclass)
);

diseases

Master list of diseases

Schema
reference

CREATE TABLE diseases (
   synonym integer,
   priority boolean NOT NULL DEFAULT false,
   prevalence real,
   exotic boolean NOT NULL DEFAULT false,
   oie boolean NOT NULL DEFAULT false,
   main boolean NOT NULL DEFAULT false,
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   zoonotic boolean NOT NULL DEFAULT false,
   synname character varying[],
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   strategic boolean NOT NULL DEFAULT false,
   contagious boolean NOT NULL DEFAULT false,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.diseases_id_seq'::regclass),
   code character varying UNIQUE NOT NULL,
   name character varying[] NOT NULL
);

diseasesigns

Probabiilty matrix of the occurrence of different signs with different diseases

Schema
reference

CREATE TABLE diseasesigns (
   prob real NOT NULL DEFAULT 0.5,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   createdby integer NOT NULL REFERENCES users,
   signid integer NOT NULL REFERENCES signs,
   diseaseid integer NOT NULL REFERENCES diseases,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.diseasesigns_id_seq'::regclass)
);

diseasespecies

Species susceptible to different diseases

Schema
reference

CREATE TABLE diseasespecies (
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL REFERENCES users,
   speciesid integer NOT NULL REFERENCES species,
   diseaseid integer NOT NULL REFERENCES diseases,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.diseasespecies_id_seq'::regclass),
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   del boolean NOT NULL DEFAULT false
);

distribusistraw

Schema
data

CREATE TABLE distribusistraw (
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   tujuan integer NOT NULL REFERENCES locations,
   asal integer NOT NULL REFERENCES locations,
   tanggal timestamp without time zone NOT NULL DEFAULT now(),
   jumlah integer NOT NULL,
   idstraw character varying NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.distribusistraw_id_seq'::regclass),
   del boolean NOT NULL DEFAULT false
);

drugclasses

Classification of drugs by regulation status

Schema
reference

CREATE TABLE drugclasses (
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.drugclasses_id_seq'::regclass),
   name character varying[] NOT NULL,
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone
);

drugs

Master table of registered and other drugs

Schema
data

CREATE TABLE drugs (
   comments character varying,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.drugs_id_seq'::regclass),
   drugtypeid integer NOT NULL REFERENCES drugtypes,
   code character varying,
   hiercode character varying,
   name character varying NOT NULL,
   regnumber character varying,
   regyear integer,
   di character(1),
   bfpl character(1),
   manufacturer character varying,
   licensee character varying,
   composition character varying,
   class integer REFERENCES drugclasses,
   packaging character varying,
   doseunits units,
   indication character varying,
   synonym integer,
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   paravet boolean NOT NULL DEFAULT false
);

drugtypes

Classification of drugs by functional group

Schema
reference

CREATE TABLE drugtypes (
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.drugtypes_id_seq'::regclass),
   del boolean NOT NULL DEFAULT false,
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL REFERENCES users,
   synonym integer,
   name character varying[] NOT NULL,
   hiercode character varying UNIQUE NOT NULL,
   code character varying UNIQUE NOT NULL
);

ekspor_pencucian_walet

ekspor_pencucian_walet

Schema
data

CREATE TABLE ekspor_pencucian_walet (
   del boolean NOT NULL DEFAULT false,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('ekspor_pencucian_walet_id_seq'::regclass),
   infra_id integer NOT NULL,
   negara_tujuan character varying NOT NULL,
   volume_kg double precision,
   rupiah double precision,
   tahun integer NOT NULL,
   triwulan integer NOT NULL,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone
);

emailnotifications

Schema
backoffice

CREATE TABLE emailnotifications (
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('backoffice.emailnotifications_id_seq'::regclass),
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer,
   createdon timestamp with time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL DEFAULT 0,
   type character varying,
   recipient character varying,
   unsubscribeurl character varying,
   signingcerturl character varying,
   signature character varying,
   signatureversion character varying,
   notificationtime timestamp with time zone,
   message jsonb,
   topicarn character varying,
   messageid character varying
);

errors

Log of SMS format errors

Schema
sms

CREATE TABLE errors (
   receivedtime timestamp without time zone,
   message character varying,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('sms.errors_id_seq'::regclass),
   userid integer NOT NULL REFERENCES users
);

estrus

Schema
data

CREATE TABLE estrus (
   reportdate timestamp without time zone NOT NULL DEFAULT now(),
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.estrus_id_seq'::regclass),
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   msgid bigint NOT NULL,
   userid integer NOT NULL REFERENCES users,
   animals integer NOT NULL DEFAULT 1
);

eventcase

Link table to associate multiple cases with a single major disease event

Schema
data

CREATE TABLE eventcase (
   del boolean NOT NULL DEFAULT false,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.eventcase_id_seq'::regclass),
   caseid integer NOT NULL REFERENCES cases,
   diseaseeventid integer NOT NULL REFERENCES cases,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone
);

exportreferencenamedranges

Definition of Excel named ranges for the reference table export system

Schema
reference

CREATE TABLE exportreferencenamedranges (
   modifiedon timestamp without time zone,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.exportreferencenamedranges_id_seq'::regclass),
   tabid integer NOT NULL REFERENCES exportreferencetabs,
   rangename character varying NOT NULL,
   range character varying NOT NULL,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   del boolean NOT NULL DEFAULT false
);

exportreferences

Master table for the reference table export system

Schema
reference

CREATE TABLE exportreferences (
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   filename character varying,
   listsql character varying,
   replysql character varying,
   listname character varying[],
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.exportreferences_id_seq'::regclass),
   name character varying[] NOT NULL
);

exportreferencetabs

Tab (worksheet) content definition for the reference table export system

Schema
reference

CREATE TABLE exportreferencetabs (
   modifiedon timestamp without time zone,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL REFERENCES users,
   sql character varying NOT NULL,
   tabname character varying NOT NULL,
   exportreferenceid integer NOT NULL REFERENCES exportreferences,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.exportreferencetabs_id_seq'::regclass),
   sortorder integer NOT NULL DEFAULT 1,
   del boolean NOT NULL DEFAULT false,
   modifiedby integer REFERENCES users
);

farm_details

Schema
data

CREATE TABLE farm_details (
   jenis_usaha_id integer NOT NULL REFERENCES jenis_usaha,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('farm_details_id_seq'::regclass),
   farm_id integer NOT NULL REFERENCES farms
);

farm_hewan

Schema
data

CREATE TABLE farm_hewan (
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone DEFAULT CURRENT_TIMESTAMP,
   createdby integer NOT NULL REFERENCES users,
   tanggalakhir date,
   tanggalmulai date NOT NULL,
   idhewan integer NOT NULL REFERENCES hewan,
   idfarm integer NOT NULL REFERENCES farms,
   del boolean NOT NULL DEFAULT false
);

farm_visits

Visited list identification by Satgas PMK

Schema
data

CREATE TABLE farm_visits (
   modifiedon timestamp without time zone,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('farm_visits_id_seq'::regclass),
   farmer_id integer NOT NULL REFERENCES farmers,
   visited_date timestamp without time zone DEFAULT CURRENT_TIMESTAMP,
   visited_by integer NOT NULL REFERENCES users,
   del boolean NOT NULL DEFAULT false,
   modifiedby integer REFERENCES users
);

farmers

List of farmers that registered by Satgas PMK

Schema
data

CREATE TABLE farmers (
   centroid public.geometry(Point,4326),
   modifiedby integer REFERENCES users,
   createdby integer NOT NULL REFERENCES users,
   modifiedon timestamp without time zone,
   createdon timestamp without time zone DEFAULT CURRENT_TIMESTAMP,
   del boolean NOT NULL DEFAULT false,
   status_id integer NOT NULL REFERENCES status_pmk,
   address character varying(255),
   location_id integer NOT NULL REFERENCES locations,
   nik character varying(16) NOT NULL,
   phone phonenumber NOT NULL,
   name character varying(255) NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('farmers_id_seq'::regclass)
);

farms

Schema
data

CREATE TABLE farms (
   code character varying(255),
   idspecies integer NOT NULL REFERENCES species,
   name character varying NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('farms_id_seq'::regclass),
   national_code character varying(255) NOT NULL,
   locationid integer REFERENCES locations,
   address text,
   geom public.geometry(Point,4326),
   lat double precision,
   lon double precision,
   farm_types farm_types NOT NULL,
   idpemilik integer NOT NULL REFERENCES users,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone DEFAULT CURRENT_TIMESTAMP,
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false
);

favoritereport

Schema
backoffice

CREATE TABLE favoritereport (
   title character varying[] NOT NULL,
   del boolean DEFAULT false,
   modifiedby integer,
   modifiedon timestamp without time zone,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   displayorder integer,
   parent integer NOT NULL,
   type character varying NOT NULL,
   menuaction character varying NOT NULL,
   label character varying[] NOT NULL,
   reportid integer NOT NULL REFERENCES reports,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('backoffice.favoritereport_id_seq'::regclass)
);

fieldtypes

Originally this table was intended to define datatypes that would be used for metadata for our datafiles, to enable code that would allow importation of spreadsheet data into those tables. However, this is not happening yet. The only records in this table which are used are the ones with typecode = 'l' (small L), which define lookup types. These are used for the lookup types in parameter definitions for reports. There is no interface to define lookup types yet, but it is fairly simple to do it in sql. Lookup types can be defined based on a table, or a hard-coded sql, but hardcoding sql means that you can't get language-dependent strings returned as we can when referencing fields such as name[] in our reference tables.

Schema
metadata

CREATE TABLE fieldtypes (
   columnname character varying,
   schemaname character varying,
   tablename character varying,
   typename character varying UNIQUE NOT NULL,
   description character varying,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('metadata.fieldtypes_id_seq'::regclass),
   domaincond character varying,
   synonyms boolean DEFAULT false,
   typecode character(1),
   sqlquery character varying,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   filtercond character varying,
   del boolean NOT NULL DEFAULT false,
   basetypeoid oid
);

findings

Laboratory findings

Schema
reference

CREATE TABLE findings (
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   section integer NOT NULL DEFAULT 1 REFERENCES labsections,
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   createdby integer NOT NULL REFERENCES users,
   name character varying[] NOT NULL,
   hiercode character varying NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.findings_id_seq'::regclass)
);

form_def

Schema
backoffice

CREATE TABLE form_def (
   row_to_json json
);

fungsi

Animal function

Schema
reference

CREATE TABLE fungsi (
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL REFERENCES users,
   speciesid integer REFERENCES species,
   name character varying[] NOT NULL,
   code character varying NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.fungsi_id_seq'::regclass),
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false
);

gestation

Reproductive parameters of key species for production module reports

Schema
reference

CREATE TABLE gestation (
   id integer NOT NULL,
   speciesid integer NOT NULL,
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp with time zone,
   modifiedby integer,
   createdon timestamp with time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL,
   oestruscycle integer,
   variation integer NOT NULL,
   gestationperiod integer NOT NULL
);

group_can_views

Schema
backoffice

CREATE TABLE group_can_views (
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL REFERENCES users,
   view_group_id integer NOT NULL REFERENCES groups,
   group_id integer NOT NULL REFERENCES groups,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('group_can_views_id_seq'::regclass)
);

group_permissions

Default permissions for a user group

Schema
backoffice

CREATE TABLE group_permissions (
   del boolean NOT NULL DEFAULT false,
   permission_typeid integer NOT NULL REFERENCES permission_types,
   groupid integer NOT NULL REFERENCES groups,
   permission integer NOT NULL,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('backoffice.group_permissions_id_seq'::regclass)
);

groups

User roles determining default permissions in the system

Schema
backoffice

CREATE TABLE groups (
   name character varying[] NOT NULL,
   admin_view boolean NOT NULL DEFAULT false,
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL REFERENCES users,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('backoffice.groups_id_seq'::regclass)
);

hewan

Master table for individual animal identification

Schema
data

CREATE TABLE hewan (
   image character varying[],
   status_kematian integer REFERENCES tipeakhir,
   tanggal_kematian date,
   status status_pemilik_hewan,
   national_code character varying(30),
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.hewan_id_seq'::regclass),
   identifikasi character varying,
   indukjantan bigint REFERENCES hewan,
   indukbetina bigint REFERENCES hewan,
   idspesies integer REFERENCES species,
   idsex integer REFERENCES sex,
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   idfungsi integer REFERENCES fungsi,
   tanggallahir date,
   msgid bigint NOT NULL
);

hijauan

Data table for forage crop production

Schema
data

CREATE TABLE hijauan (
   luas double precision NOT NULL,
   idjenishijauan integer NOT NULL REFERENCES jenishijauan,
   locationid integer NOT NULL REFERENCES locations,
   reportdate timestamp without time zone NOT NULL DEFAULT now(),
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.hijauan_id_seq'::regclass),
   tahunfasilitasi integer,
   idanggaran integer,
   bulanpanen double precision,
   jumlahbibit double precision,
   idjeniskebun integer,
   msgid bigint NOT NULL,
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL REFERENCES users,
   idasalbibit integer NOT NULL
);

importfields

Field definitions for Excel imports

Schema
metadata

CREATE TABLE importfields (
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('metadata.importfields_id_seq'::regclass),
   tableid integer NOT NULL REFERENCES importtables,
   fieldname character varying,
   label character varying[] NOT NULL,
   required boolean NOT NULL DEFAULT true,
   keyfield boolean NOT NULL DEFAULT false,
   validationsql character varying,
   lookuperror character varying,
   lookupsql character varying,
   validationerror character varying,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   modifiedon timestamp without time zone,
   hidden boolean NOT NULL DEFAULT false,
   modifiedby integer REFERENCES users,
   del boolean NOT NULL DEFAULT false,
   ref character varying,
   copyprevious boolean NOT NULL DEFAULT false,
   fieldtype integer NOT NULL REFERENCES fieldtypes,
   varname character varying
);

importfieldtypes

Field types used for Excel imports

Schema
metadata

CREATE TABLE importfieldtypes (
   lookuperror character varying,
   exceltype character(1) NOT NULL DEFAULT 's'::bpchar,
   islist boolean NOT NULL DEFAULT false,
   quote boolean NOT NULL DEFAULT true,
   del boolean NOT NULL DEFAULT false,
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   lookupsql character varying,
   validationerror character varying,
   validationsql character varying,
   description character varying,
   name character varying[] NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('metadata.importfieldtypes_id_seq'::regclass)
);

importjobs

Job definitions for Excel imports. May include multiple tables

Schema
metadata

CREATE TABLE importjobs (
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('metadata.importjobs_id_seq'::regclass),
   name character varying[] NOT NULL,
   code character varying NOT NULL,
   permissiontypeid integer NOT NULL REFERENCES permission_types,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   del boolean NOT NULL DEFAULT false,
   sms_alert boolean NOT NULL DEFAULT false
);

importtables

Table definitions for Excel imports

Schema
metadata

CREATE TABLE importtables (
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('metadata.importtables_id_seq'::regclass),
   jobid integer NOT NULL REFERENCES importjobs,
   tablename character varying NOT NULL,
   tableorder integer NOT NULL DEFAULT 1,
   keyfield character varying NOT NULL DEFAULT 'id'::character varying,
   parenttable integer REFERENCES importtables,
   linkfield character varying,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   del boolean NOT NULL DEFAULT false,
   keyexpression character varying,
   canupdate boolean NOT NULL DEFAULT false
);

inbox

Incoming SMS messsages

Schema
sms

CREATE TABLE inbox (
   message character varying,
   modifiedby integer REFERENCES users,
   createdby integer NOT NULL REFERENCES users,
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   sender character varying,
   receivedtime timestamp without time zone,
   senttime timestamp without time zone,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('sms.inbox_id_seq'::regclass),
   receiver character varying,
   userid integer,
   msgid bigint,
   createdon timestamp without time zone NOT NULL DEFAULT now()
);

infrastructure

Master table of infrastructure (labs, offices, abattoirs etc)

Schema
reference

CREATE TABLE infrastructure (
   physical_condition physical_condition,
   existing existing,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.infrastructure_id_seq'::regclass),
   code character varying UNIQUE,
   name character varying NOT NULL,
   infrastructure_typeid integer NOT NULL REFERENCES infrastructure_types,
   locationid integer NOT NULL REFERENCES locations,
   address character varying,
   postcode character varying,
   phone character varying,
   fax character varying,
   contact integer,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   liveliness liveliness,
   del boolean NOT NULL DEFAULT false,
   infratype integer UNIQUE,
   area integer[],
   shortname character varying
);

infrastructure_types

Classification of infrastructure

Schema
reference

CREATE TABLE infrastructure_types (
   admin_view boolean NOT NULL DEFAULT false,
   code character varying UNIQUE NOT NULL,
   hiercode character varying UNIQUE NOT NULL,
   name character varying[] NOT NULL,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.infrastructure_types_id_seq'::regclass)
);

investigationanimals

Number of animals sick, dead, at risk etc, in a detailed case investigation. Also used to flag the resolution of an outbreak

Schema
data

CREATE TABLE investigationanimals (
   msgid bigint NOT NULL,
   reportdate timestamp without time zone NOT NULL DEFAULT now(),
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.investigationanimals_id_seq'::regclass),
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   resolved boolean,
   atrisk integer,
   slaughtered integer,
   dead integer,
   sick integer,
   speciesid integer NOT NULL REFERENCES species,
   caseid integer NOT NULL REFERENCES cases,
   userid integer NOT NULL REFERENCES users
);

irs

Schema
backoffice

CREATE TABLE irs (
   svdrptid integer,
   userid integer,
   name character varying,
   groupid integer,
   indivsub boolean,
   active boolean
);

jenis_usaha

Schema
data

CREATE TABLE jenis_usaha (
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('jenis_usaha_id_seq'::regclass),
   name character varying(255) NOT NULL,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now()
);

jenisbibit

Types of forage crops

Schema
reference

CREATE TABLE jenisbibit (
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.jenisbibit_id_seq'::regclass),
   code character varying,
   createdby integer NOT NULL REFERENCES users,
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   name character varying[] NOT NULL,
   createdon timestamp without time zone NOT NULL DEFAULT now()
);

jenishijauan

Types of forage crops

Schema
reference

CREATE TABLE jenishijauan (
   name character varying[] NOT NULL,
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL REFERENCES users,
   code character varying,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.jenishijauan_id_seq'::regclass)
);

jeniskebun

Types of garden

Schema
reference

CREATE TABLE jeniskebun (
   name character varying[] NOT NULL,
   id integer NOT NULL,
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL,
   code character varying
);

jeniskonsentrat

Types of for consentrat

Schema
reference

CREATE TABLE jeniskonsentrat (
   name character varying[] NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.jeniskonsentrat_id_seq'::regclass),
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL REFERENCES users,
   code character varying
);

jeniskontainer

Types of containers

Schema
reference

CREATE TABLE jeniskontainer (
   code character varying,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.jeniskontainer_id_seq'::regclass),
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL REFERENCES users,
   name character varying[] NOT NULL
);

kejadian

Events table for an individual animal, used to store a range of different event types

Schema
data

CREATE TABLE kejadian (
   reportdate timestamp without time zone NOT NULL DEFAULT now(),
   idhewan bigint REFERENCES hewan,
   idtipekejadian integer REFERENCES tipekejadian,
   datakejadian character varying,
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   msgid bigint NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.kejadian_id_seq'::regclass)
);

kejadiankelompok

Events table for a group of animals, used to store a range of different event types

Schema
data

CREATE TABLE kejadiankelompok (
   infrastructureid integer NOT NULL REFERENCES infrastructure,
   msgid bigint NOT NULL,
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL REFERENCES users,
   jumlahhewan integer NOT NULL,
   nilai double precision,
   idklasifikasi integer,
   idtipekejadian integer REFERENCES tipekejadian,
   reportdate timestamp without time zone NOT NULL DEFAULT now(),
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.kejadiankelompok_id_seq'::regclass)
);

keputusanam

keputusan pemeriksaan antemortem

Schema
reference

CREATE TABLE keputusanam (
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.keputusanam_id_seq'::regclass),
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   name character varying[] NOT NULL,
   code character varying,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users
);

keputusanpm

keputusan pemeriksaan postmortem

Schema
reference

CREATE TABLE keputusanpm (
   createdby integer NOT NULL REFERENCES users,
   name character varying[] NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.keputusanpm_id_seq'::regclass),
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   code character varying
);

keterangan

Comments on a case

Schema
data

CREATE TABLE keterangan (
   modifiedon timestamp without time zone,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.keterangan_id_seq'::regclass),
   caseid integer NOT NULL REFERENCES cases,
   keterangan character varying,
   msgid bigint NOT NULL,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   del boolean NOT NULL DEFAULT false
);

komentar

Comments on a case

Schema
data

CREATE TABLE komentar (
   komentar character varying,
   msgid bigint NOT NULL,
   createdby integer NOT NULL,
   del boolean NOT NULL DEFAULT false,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.komentar_id_seq'::regclass),
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer,
   modifiedon timestamp without time zone,
   caseid integer NOT NULL REFERENCES cases
);

kondisikontainer

condition of containers

Schema
reference

CREATE TABLE kondisikontainer (
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.kondisikontainer_id_seq'::regclass),
   name character varying[] NOT NULL,
   code character varying,
   createdby integer NOT NULL REFERENCES users
);

konsentrat

Data table for consentrat

Schema
data

CREATE TABLE konsentrat (
   msgid bigint NOT NULL,
   idanggaran integer,
   modifiedon timestamp without time zone,
   reportdate timestamp without time zone NOT NULL DEFAULT now(),
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.konsentrat_id_seq'::regclass),
   infraid integer NOT NULL,
   idjeniskonsentrat integer NOT NULL REFERENCES jeniskonsentrat,
   jumlah double precision NOT NULL,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   del boolean NOT NULL DEFAULT false
);

kursuspelatihan

Training courses

Schema
data

CREATE TABLE kursuspelatihan (
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   moduleid integer[],
   name character varying[] NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.kursuspelatihan_id_seq'::regclass),
   modifiedby integer REFERENCES users,
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   createdby integer NOT NULL REFERENCES users,
   trainingtype integer NOT NULL DEFAULT 1 REFERENCES trainingtypes,
   organiser integer NOT NULL DEFAULT 1 REFERENCES adminlevels,
   trainers integer[] NOT NULL,
   area integer[] NOT NULL,
   enddate date,
   startdate date NOT NULL DEFAULT now(),
   locationid integer NOT NULL
);

labconfirms

Schema
data

CREATE TABLE labconfirms (
   epinumber character varying,
   createdby integer NOT NULL DEFAULT 1,
   labid integer NOT NULL,
   caseid integer NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('labconfirms_id_seq'::regclass),
   testid integer,
   endtesting_date timestamp without time zone,
   receiveresult_date timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer,
   createdon timestamp without time zone NOT NULL DEFAULT now()
);

labsections

Laboratory sections

Schema
reference

CREATE TABLE labsections (
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.labsections_id_seq'::regclass),
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL REFERENCES users,
   name character varying[] NOT NULL,
   code character varying UNIQUE NOT NULL
);

labsubmissions

Laboratory submissions master table

Schema
lab

CREATE TABLE labsubmissions (
   submissionreason integer NOT NULL REFERENCES submissionreasons,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('lab.submissions_id_seq'::regclass),
   reportdate timestamp without time zone NOT NULL DEFAULT now(),
   userid integer NOT NULL REFERENCES users,
   epinum character varying NOT NULL,
   caseid integer REFERENCES cases,
   survid integer REFERENCES surveillanceprograms,
   skkhid integer REFERENCES movement,
   otherid character varying,
   locationid integer REFERENCES locations,
   submittertype integer NOT NULL REFERENCES submittertypes,
   submitterid integer REFERENCES users,
   submittername character varying,
   submitteraddress character varying,
   submitterphone landline,
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   msgid bigint,
   labid integer REFERENCES infrastructure,
   datesampled date,
   datereceived date
);

labtests

Laboratory tests defined for each laboratory, referencing testtypes (the master test table)

Schema
reference

CREATE TABLE labtests (
   createdby integer NOT NULL REFERENCES users,
   ref character varying,
   accredited boolean NOT NULL DEFAULT false,
   quantunitsid integer REFERENCES testunits,
   quantfinding boolean NOT NULL DEFAULT true,
   qualfinding boolean NOT NULL DEFAULT false,
   labid integer NOT NULL REFERENCES infrastructure,
   sectionid integer NOT NULL REFERENCES labsections,
   testid integer NOT NULL REFERENCES testtypes,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.labtests_id_seq'::regclass),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   createdon timestamp without time zone NOT NULL DEFAULT now()
);

languages

List of languages used in the system

Schema
backoffice

CREATE TABLE languages (
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   code character varying UNIQUE NOT NULL,
   createdby integer NOT NULL REFERENCES users,
   name character varying[] NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('backoffice.languages_id_seq'::regclass),
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users
);

locationlevels

Schema
reference

CREATE TABLE locationlevels (
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL REFERENCES users,
   name character varying[] NOT NULL,
   code character varying NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.locationlevels_id_seq'::regclass)
);

locations

Master spatial data table with administrative boundaries

Schema
reference

CREATE TABLE locations (
   temp boolean DEFAULT false,
   mendagricode character varying,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.locations_id_seq'::regclass),
   name character varying,
   code locationcode,
   bpscode character varying,
   level integer,
   validfrom date DEFAULT ('now'::text)::date,
   validto date,
   geom public.geometry(MultiPolygon,4326),
   centroid public.geometry(Point,4326),
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   comment text,
   geom_proj public.geometry(MultiPolygon,3857),
   centroid_proj public.geometry(Point,3857)
);

logdelete

Schema
data

CREATE TABLE logdelete (
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.logdelete_id_seq'::regclass),
   table character varying(100),
   key character varying(50),
   value character varying(100),
   delete_by integer REFERENCES users,
   delete_at timestamp without time zone,
   scema character varying(100)
);

menu

Website main menu structure definition

Schema
backoffice

CREATE TABLE menu (
   accesslevel text NOT NULL,
   menuaction character varying,
   parent integer NOT NULL,
   displayorder integer NOT NULL,
   createdon timestamp with time zone NOT NULL DEFAULT now(),
   createdby integer,
   modifiedon timestamp with time zone,
   modifiedby integer,
   del boolean NOT NULL DEFAULT false,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('backoffice.menu_id_seq'::regclass),
   pagetitle character varying[] NOT NULL
);

menu2

Schema
backoffice

CREATE TABLE menu2 (
   modifiedon timestamp with time zone,
   createdby integer,
   createdon timestamp with time zone NOT NULL DEFAULT now(),
   displayorder integer NOT NULL,
   parent integer NOT NULL,
   menuaction character varying,
   accesslevel text NOT NULL,
   pagetitle character varying[] NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('backoffice.menu2_id_seq'::regclass),
   del boolean NOT NULL DEFAULT false,
   modifiedby integer
);

methods

Methods for laboratory tests

Schema
reference

CREATE TABLE methods (
   reportid integer,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.methods_id_seq'::regclass),
   code character varying UNIQUE,
   hiercode character varying UNIQUE NOT NULL,
   name character varying[] UNIQUE NOT NULL,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false
);

modemlog

Log of modem status

Schema
sms

CREATE TABLE modemlog (
   pulsacheck timestamp without time zone,
   days integer,
   sent integer,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('sms.modemlog_id_seq'::regclass),
   modem text,
   credit integer
);

modemstatus

Snapshot of modem status

Schema
sms

CREATE TABLE modemstatus (
   modem text,
   comment character varying,
   incoming boolean,
   nport integer,
   days integer,
   credit integer,
   pulsacheck timestamp without time zone,
   ber text,
   ssi text,
   received integer,
   failed integer,
   sent integer,
   status text,
   lastcheck timestamp without time zone,
   phone text,
   operatorid integer REFERENCES sms_operators,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('sms.modemstatus_id_seq'::regclass)
);

modulpelatihan

Training modules

Schema
reference

CREATE TABLE modulpelatihan (
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.modulpelatihan_id_seq'::regclass),
   del boolean NOT NULL DEFAULT false,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedon timestamp without time zone,
   name character varying[] NOT NULL,
   createdby integer NOT NULL REFERENCES users
);

months

Calendar months

Schema
reference

CREATE TABLE months (
   modifiedby integer REFERENCES users,
   createdby integer NOT NULL REFERENCES users,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.months_id_seq'::regclass),
   code character varying NOT NULL,
   name character varying[] NOT NULL,
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   createdon timestamp without time zone NOT NULL DEFAULT now()
);

movement

Animal movement reporting (health certificate) master table

Schema
data

CREATE TABLE movement (
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.movement_id_seq'::regclass),
   reportdate timestamp without time zone NOT NULL DEFAULT now(),
   userid integer NOT NULL REFERENCES users,
   msgid bigint NOT NULL,
   origin integer NOT NULL REFERENCES locations,
   destination integer NOT NULL REFERENCES locations,
   ownerid character varying,
   ownerphone character varying,
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false
);

movementanimals

List of species and number of animals for animal movement reporting

Schema
data

CREATE TABLE movementanimals (
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   total integer NOT NULL,
   speciesid integer NOT NULL REFERENCES species,
   movementid integer NOT NULL REFERENCES movement,
   msgid bigint NOT NULL,
   userid integer NOT NULL REFERENCES users,
   reportdate timestamp without time zone NOT NULL DEFAULT now(),
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.movementanimals_id_seq'::regclass)
);

multilayermaps

Schema
report

CREATE TABLE multilayermaps (
   mapreportid integer NOT NULL,
   listorder smallint,
   savedreportid integer NOT NULL REFERENCES savedreports,
   del boolean NOT NULL DEFAULT false,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer,
   modifiedon timestamp without time zone,
   modifiedby integer,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('report.multilayermaps_id_seq'::regclass),
   reportid integer NOT NULL REFERENCES reports
);

negativereports

Village-level negative disease reports

Schema
data

CREATE TABLE negativereports (
   reportdate timestamp without time zone NOT NULL DEFAULT now(),
   id integer NOT NULL DEFAULT nextval('data.negativereports_id_seq'::regclass),
   userid integer NOT NULL,
   msgid bigint NOT NULL,
   checked boolean,
   createdby integer NOT NULL DEFAULT 1,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false
);

news

News stories

Schema
backoffice

CREATE TABLE news (
   createdby integer NOT NULL,
   imageid integer,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   image character varying,
   type character varying,
   summary character varying[] NOT NULL,
   headline character varying[] NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('backoffice.news_id_seq'::regclass),
   article character varying[]
);

nitrogenshipment

Schema
data

CREATE TABLE nitrogenshipment (
   modifiedon timestamp with time zone,
   createdby integer NOT NULL REFERENCES users,
   msgid bigint NOT NULL,
   volume double precision NOT NULL,
   stocktakeid integer REFERENCES stocktake,
   receiptid integer REFERENCES receipt,
   shipmentid integer REFERENCES shipments,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.nitrogenshipment_id_seq'::regclass),
   del boolean NOT NULL DEFAULT false,
   createdon timestamp with time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users
);

notifiables

Schema
data

CREATE TABLE notifiables (
   del boolean NOT NULL DEFAULT false,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('notifiables_id_seq'::regclass),
   caseid integer NOT NULL,
   onset date,
   speciesid integer NOT NULL,
   cases integer NOT NULL,
   reportdate timestamp without time zone NOT NULL DEFAULT now(),
   userid integer NOT NULL,
   msgid bigint NOT NULL,
   createdby integer NOT NULL DEFAULT 1,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer,
   modifiedon timestamp without time zone
);

obat_zataktif

tabel obat dan zat aktifnya

Schema
data

CREATE TABLE obat_zataktif (
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   idzataktif bigint NOT NULL REFERENCES zataktif,
   idobat bigint NOT NULL REFERENCES drugs,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.obat_zataktif_id_seq'::regclass)
);

odttemplates

Templates for ODT reports

Schema
report

CREATE TABLE odttemplates (
   modifiedon timestamp without time zone,
   name character varying,
   id_infrastructure integer,
   footer_img character varying,
   header_img character varying,
   infra_type integer,
   sql character varying,
   del boolean NOT NULL DEFAULT false,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL REFERENCES users,
   filename character varying NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('report.odttemplates_id_seq'::regclass)
);

outbox

Outgoing SMS messages

Schema
sms

CREATE TABLE outbox (
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL REFERENCES users,
   queued timestamp without time zone,
   modem character varying,
   priority boolean NOT NULL DEFAULT false,
   msgid bigint,
   message character varying,
   phone character varying,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('sms.outbox_id_seq'::regclass)
);

owners

Owners of animals in a laboratory submission

Schema
lab

CREATE TABLE owners (
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   locationid integer REFERENCES locations,
   phone phonenumber,
   address character varying,
   name character varying,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('lab.pemilik_id_seq'::regclass),
   del boolean NOT NULL DEFAULT false,
   userid integer,
   msgid bigint
);

parameters

Miscellaneous user defined system parameters

Schema
backoffice

CREATE TABLE parameters (
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL REFERENCES users,
   value character varying,
   name character varying NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('backoffice.parameters_id_seq'::regclass)
);

parent_species

Schema
reference

CREATE TABLE parent_species (
   sikhnascode integer NOT NULL,
   name character varying[] NOT NULL,
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL REFERENCES users,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('parent_species_id_seq'::regclass)
);

partisipanpelatihan

Participants at a training course

Schema
data

CREATE TABLE partisipanpelatihan (
   idkursuspelatihan integer NOT NULL REFERENCES kursuspelatihan,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.partisipanpelatihan_id_seq'::regclass),
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL REFERENCES users,
   userid integer NOT NULL REFERENCES users
);

password_reset_tokens

Schema
backoffice

CREATE TABLE password_reset_tokens (
   email character varying(255) PRIMARY KEY NOT NULL,
   created_at timestamp without time zone,
   token character varying(255)
);

pemilik_hewan

Link table for animal ownership, between the hewan (animal ID) table and the users (owners) table

Schema
data

CREATE TABLE pemilik_hewan (
   tanggalakhir timestamp without time zone,
   lon double precision,
   lat double precision,
   geom public.geometry(Point,3857),
   locationid integer REFERENCES locations,
   idtipepemilik integer NOT NULL DEFAULT 1 REFERENCES tipepemilik,
   msgid bigint,
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   tanggalmulai timestamp without time zone NOT NULL DEFAULT now(),
   idhewan bigint NOT NULL REFERENCES hewan,
   idpemilik bigint NOT NULL REFERENCES users,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.pemilik_hewan_id_seq'::regclass)
);

pencucian_walet

pencucian walet

Schema
data

CREATE TABLE pencucian_walet (
   telp_manager character varying,
   manager character varying,
   address text,
   nik character varying,
   pemilik character varying NOT NULL,
   nib character varying NOT NULL,
   nkv_level character varying,
   nkv character varying,
   infra_id integer NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('pencucian_walet_id_seq'::regclass),
   longitude double precision,
   latitude double precision,
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL REFERENCES users,
   jumlah_pekerja integer,
   tipe_mitra_id integer NOT NULL
);

penolakan

Penolakan Pemotongan di RPH

Schema
data

CREATE TABLE penolakan (
   msgid bigint NOT NULL,
   reportdate timestamp without time zone NOT NULL DEFAULT now(),
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.penolakan_id_seq'::regclass),
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   infrastructureid integer NOT NULL REFERENCES infrastructure,
   total integer NOT NULL DEFAULT 0,
   alasanpenolakanid integer NOT NULL,
   animaltypeid integer NOT NULL REFERENCES animal_types
);

performance

Schema
backoffice

CREATE TABLE performance (
   records integer,
   createdon timestamp with time zone NOT NULL DEFAULT now(),
   id uuid NOT NULL DEFAULT gen_random_uuid(),
   datatable character varying(50),
   latest date,
   earliest date
);

permission_types

Schema
backoffice

CREATE TABLE permission_types (
   del boolean NOT NULL DEFAULT false,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('backoffice.permission_types_id_seq'::regclass),
   description character varying[] DEFAULT '{"",""}'::character varying[],
   name character varying NOT NULL,
   defaultvalue integer DEFAULT 0,
   userpermission boolean NOT NULL DEFAULT false,
   preference boolean NOT NULL DEFAULT false,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone
);

perubahansampel

Tabel Referensi Untuk Perubahan Sampel Produk Hewan

Schema
reference

CREATE TABLE perubahansampel (
   code character varying,
   createdby integer NOT NULL,
   name character varying[] NOT NULL,
   id integer NOT NULL,
   del boolean NOT NULL DEFAULT false,
   modifiedby integer,
   modifiedon timestamp without time zone,
   createdon timestamp without time zone NOT NULL DEFAULT now()
);

plr_modules

Schema
backoffice

CREATE TABLE plr_modules (
   modseq integer PRIMARY KEY NOT NULL,
   modsrc text
);

plr_modules2

Schema
backoffice

CREATE TABLE plr_modules2 (
   modsrc text,
   modseq integer
);

population

Village/farm level animal population

Schema
data

CREATE TABLE population (
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   userid integer NOT NULL REFERENCES users,
   msgid bigint NOT NULL,
   animaltypeid integer NOT NULL REFERENCES animal_types,
   total integer NOT NULL,
   locationid integer NOT NULL REFERENCES locations,
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.population_id_seq'::regclass),
   modifiedby integer REFERENCES users,
   reportdate timestamp without time zone NOT NULL DEFAULT now(),
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone
);

postmortem

Pemeriksaan postmortem di RPH

Schema
data

CREATE TABLE postmortem (
   reportdate timestamp without time zone NOT NULL DEFAULT now(),
   idam integer NOT NULL REFERENCES antemortem,
   idorgan integer NOT NULL REFERENCES specimentypes,
   iddiagnosa integer NOT NULL REFERENCES diseases,
   idsigns integer[] NOT NULL,
   idkeputusanpm integer NOT NULL REFERENCES keputusanpm,
   infrastructureid integer NOT NULL REFERENCES infrastructure,
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.postmortem_id_seq'::regclass),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   msgid bigint NOT NULL
);

preventivetreatments

Non-disease associated individual animal treatments (worming, vaccination etc)

Schema
data

CREATE TABLE preventivetreatments (
   del boolean NOT NULL DEFAULT false,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.preventivetreatments_id_seq'::regclass),
   drugid integer NOT NULL REFERENCES drugs,
   dose numeric(8,3),
   idhewan integer NOT NULL REFERENCES hewan,
   msgid bigint,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp with time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp with time zone,
   treatment_date date
);

productionsystems

Production systems

Schema
reference

CREATE TABLE productionsystems (
   modifiedby integer REFERENCES users,
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   code character varying UNIQUE NOT NULL,
   name character varying[] NOT NULL,
   hiercode character varying UNIQUE NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.productionsystems_id_seq'::regclass),
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL REFERENCES users
);

produksi_pencucian_walet

produksi pencucian walet

Schema
data

CREATE TABLE produksi_pencucian_walet (
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('produksi_pencucian_walet_id_seq'::regclass),
   infra_id integer NOT NULL,
   kapasitas_kg double precision,
   produksi_kg double precision,
   vol_dn_kg double precision,
   rp_dn double precision,
   kuota_ln_kg double precision,
   kuota_dn double precision,
   tahun integer NOT NULL,
   triwulan integer NOT NULL,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   jumlah_gua integer,
   volume_gua_kg double precision
);

produksi_rumah_walet

produksi rumah walet

Schema
data

CREATE TABLE produksi_rumah_walet (
   kapasitas_kg double precision NOT NULL,
   produksi_kg double precision NOT NULL,
   rupiah double precision,
   siklus_produksi integer,
   msgid bigint NOT NULL,
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   triwulan integer NOT NULL,
   tahun integer NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('produksi_rumah_walet_id_seq'::regclass),
   infra_id integer NOT NULL
);

programafkir

Culling programs

Schema
data

CREATE TABLE programafkir (
   startdate date NOT NULL DEFAULT now(),
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.programafkir_id_seq'::regclass),
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL REFERENCES users,
   diseaseid integer[] NOT NULL,
   area integer[] NOT NULL,
   diseaseeventid integer REFERENCES diseaseevents,
   compensation boolean NOT NULL DEFAULT false,
   mandatory boolean NOT NULL DEFAULT false,
   enddate date,
   name character varying NOT NULL
);

programtindakan

Disease control programs

Schema
data

CREATE TABLE programtindakan (
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL REFERENCES users,
   diseaseid integer[] NOT NULL,
   area integer[] NOT NULL,
   enddate date,
   startdate date NOT NULL DEFAULT now(),
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.programtindakan_id_seq'::regclass),
   name character varying NOT NULL,
   del boolean NOT NULL DEFAULT false
);

prov

Schema
backoffice

CREATE TABLE prov (
   level integer,
   bpscode character varying,
   code locationcode,
   name character varying,
   id integer,
   del boolean,
   modifiedon timestamp without time zone,
   modifiedby integer,
   createdon timestamp without time zone,
   centroid public.geometry(Point,4326),
   createdby integer,
   geom public.geometry(MultiPolygon,4326),
   validto date,
   validfrom date
);

providers

Schema
backoffice

CREATE TABLE providers (
   modifiedon timestamp without time zone,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('providers_id_seq'::regclass),
   code character varying(20) NOT NULL,
   name character varying(255) NOT NULL,
   description text,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   del boolean NOT NULL DEFAULT false,
   config json
);

purposes

Purposes for vaccination

Schema
reference

CREATE TABLE purposes (
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   name character varying[] NOT NULL,
   code character varying UNIQUE NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.purposes_id_seq'::regclass),
   modifiedby integer REFERENCES users,
   type purposetypes,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL REFERENCES users
);

questions

Questions sent by SMS

Schema
data

CREATE TABLE questions (
   modifiedon timestamp without time zone NOT NULL DEFAULT now(),
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   msgid bigint NOT NULL,
   userid integer NOT NULL REFERENCES users,
   reportdate timestamp without time zone NOT NULL DEFAULT now(),
   question character varying,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.questions_id_seq'::regclass),
   del boolean NOT NULL DEFAULT false,
   modifiedby integer REFERENCES users
);

queuestats

Snapshot of SMS outgoing queue

Schema
sms

CREATE TABLE queuestats (
   createdon timestamp without time zone,
   outgoing integer,
   sent integer,
   main integer,
   createdby integer,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('sms.queuestats_id_seq'::regclass),
   checked integer,
   failed integer,
   incoming integer
);

rabiesreports

Schema
data

CREATE TABLE rabiesreports (
   reportdate timestamp without time zone NOT NULL DEFAULT now(),
   provoked boolean NOT NULL DEFAULT false,
   locationid integer NOT NULL REFERENCES locations,
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   humansbitten integer NOT NULL,
   speciesid integer NOT NULL REFERENCES species,
   animalsbitten integer NOT NULL,
   caseid integer REFERENCES cases,
   msgid bigint NOT NULL,
   userid integer NOT NULL REFERENCES users,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.rabiesreports_id_seq'::regclass)
);

receipt

Schema
data

CREATE TABLE receipt (
   modifiedby integer REFERENCES users,
   modifiedon timestamp with time zone,
   del boolean NOT NULL DEFAULT false,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.receipt_id_seq'::regclass),
   shipmentid integer NOT NULL REFERENCES shipments,
   datereceived timestamp with time zone NOT NULL DEFAULT now(),
   infrastructureid integer NOT NULL REFERENCES infrastructure,
   msgid bigint NOT NULL,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp with time zone NOT NULL DEFAULT now()
);

registrationmatrix

Permissions for different user types to register other users

Schema
reference

CREATE TABLE registrationmatrix (
   modifiedon timestamp without time zone,
   canregister integer NOT NULL REFERENCES groups,
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   del boolean NOT NULL DEFAULT false,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.registrationmatrix_id_seq'::regclass),
   groupid integer NOT NULL REFERENCES groups
);

reportcategories

Schema
report

CREATE TABLE reportcategories (
   modifiedon timestamp without time zone NOT NULL DEFAULT now(),
   label character varying[] NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('report.reportcategories_id_seq'::regclass),
   modifiedby integer DEFAULT 1,
   del boolean NOT NULL DEFAULT false,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   prompt character varying,
   createdby integer NOT NULL DEFAULT 1
);

reporting_queue

Schema
data

CREATE TABLE reporting_queue (
   reportid integer NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reporting_queue_id_seq'::regclass),
   queueid integer NOT NULL REFERENCES reporting_queue_users,
   daterange character varying[] NOT NULL,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false
);

reporting_queue_users

Schema
backoffice

CREATE TABLE reporting_queue_users (
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reporting_queue_users_id_seq'::regclass),
   userid integer NOT NULL REFERENCES users,
   is_queue boolean NOT NULL DEFAULT false,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users
);

reportlog

Schema
report

CREATE TABLE reportlog (
   createdon timestamp with time zone NOT NULL DEFAULT now(),
   params jsonb,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('report.paramslog_id_seq'::regclass),
   modifiedby integer,
   rptid integer,
   uid integer,
   link text,
   del boolean NOT NULL DEFAULT false,
   svdrptid integer,
   modifiedon timestamp with time zone,
   createdby integer NOT NULL DEFAULT 116
);

reportparams

Replaceable parameters for reports

Schema
report

CREATE TABLE reportparams (
   lookuptyp integer REFERENCES fieldtypes,
   reportid integer NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('report.report_params_id_seq'::regclass),
   dfltval character varying,
   dynamic boolean NOT NULL DEFAULT true,
   mandatory boolean NOT NULL DEFAULT false,
   checkvalue character varying,
   lookupfld integer REFERENCES tablefields,
   lookupqry character varying,
   prompt character varying[] DEFAULT '{"",""}'::character varying[],
   paramname character varying NOT NULL,
   paramtype integer NOT NULL REFERENCES reportparamtypes,
   del boolean NOT NULL DEFAULT false,
   modifiedby integer DEFAULT 1,
   modifiedon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL DEFAULT 1,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   sortorder integer NOT NULL DEFAULT 1
);

reportparamtypes

Parameter types for reports

Schema
report

CREATE TABLE reportparamtypes (
   modifiedon timestamp without time zone,
   createdby integer NOT NULL DEFAULT 1,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   description character varying,
   typename character varying UNIQUE NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('report.rptparamtypes_id_seq'::regclass),
   modifiedby integer,
   validationregex character varying,
   del boolean NOT NULL DEFAULT false
);

reports

Time (in minutes) between updating widget data in static storage (default one day)

Schema
report

CREATE TABLE reports (
   name character varying[] NOT NULL DEFAULT '{"",""}'::character varying[],
   description character varying[] DEFAULT '{"",""}'::character varying[],
   caption character varying[] DEFAULT '{"",""}'::character varying[],
   footnote character varying[] DEFAULT '{"",""}'::character varying[],
   permission integer DEFAULT 61 REFERENCES permission_types,
   public boolean NOT NULL DEFAULT false,
   web boolean NOT NULL DEFAULT true,
   naturalorder integer,
   rcode character varying,
   readonly boolean NOT NULL DEFAULT false,
   maptype report.maptype,
   sql character varying,
   widget_update_interval integer DEFAULT 1880,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   tag character varying,
   cache_validity integer DEFAULT 60,
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('report.reports_id_seq'::regclass),
   category character varying,
   createdby integer NOT NULL DEFAULT 0 REFERENCES users,
   thumbnails text,
   source_database reportdatabase NOT NULL DEFAULT 'Replica'::backoffice.reportdatabase,
   cacheable boolean DEFAULT true,
   modifiedby integer REFERENCES users,
   bigreportcached boolean NOT NULL DEFAULT false,
   max_queue_day integer,
   reporttype report.reporttypes
);

reports

Master report definition table

Schema
report

CREATE TABLE reports (
   naturalorder integer,
   web boolean NOT NULL DEFAULT true,
   public boolean NOT NULL DEFAULT false,
   permission integer DEFAULT 61 REFERENCES permission_types,
   footnote character varying[] DEFAULT '{"",""}'::character varying[],
   caption character varying[] DEFAULT '{"",""}'::character varying[],
   description character varying[] DEFAULT '{"",""}'::character varying[],
   name character varying[] NOT NULL DEFAULT '{"",""}'::character varying[],
   reporttype report.reporttypes,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('report.reports_id_seq'::regclass),
   del boolean NOT NULL DEFAULT false,
   source_database reportdatabase NOT NULL DEFAULT 'Replica'::backoffice.reportdatabase,
   cache_validity integer DEFAULT 60,
   tag character varying,
   category character varying,
   thumbnails text,
   bigreportcached boolean NOT NULL DEFAULT false,
   max_queue_day integer,
   readonly boolean NOT NULL DEFAULT false,
   maptype report.maptype,
   widget_update_interval integer DEFAULT 1880,
   cacheable boolean DEFAULT true,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL DEFAULT 0 REFERENCES users,
   rcode character varying,
   sql character varying
);

reportsubscriptions

Group and individual subscriptions to saved reports for automated periodic reporting

Schema
report

CREATE TABLE reportsubscriptions (
   groupid integer REFERENCES groups,
   active boolean NOT NULL DEFAULT true,
   del boolean NOT NULL DEFAULT false,
   modifiedby integer,
   modifiedon timestamp without time zone DEFAULT now(),
   createdby integer NOT NULL DEFAULT 1,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   userid integer REFERENCES users,
   svdrptid integer NOT NULL REFERENCES savedreports,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('report.reportsubscriptions_id_seq'::regclass)
);

reporttags

Schema
backoffice

CREATE TABLE reporttags (
   prompt character varying,
   del boolean NOT NULL DEFAULT false,
   createdby integer NOT NULL DEFAULT 1,
   label character varying[] NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('report.reporttags_id_seq'::regclass),
   modifiedby integer DEFAULT 1,
   modifiedon timestamp without time zone NOT NULL DEFAULT now(),
   createdon timestamp without time zone NOT NULL DEFAULT now()
);

reporttags

Schema
report

CREATE TABLE reporttags (
   modifiedby integer DEFAULT 1,
   del boolean NOT NULL DEFAULT false,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('report.reporttags_id_seq'::regclass),
   label character varying[] NOT NULL,
   prompt character varying,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL DEFAULT 1,
   modifiedon timestamp without time zone NOT NULL DEFAULT now()
);

response

Initial investigation of a disease report, including differential diagnosis

Schema
data

CREATE TABLE response (
   del boolean NOT NULL DEFAULT false,
   validatedk boolean NOT NULL DEFAULT true,
   validatedp boolean NOT NULL DEFAULT true,
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   visited boolean NOT NULL DEFAULT true,
   caseid integer NOT NULL REFERENCES cases,
   msgid bigint NOT NULL,
   userid integer NOT NULL REFERENCES users,
   diagnosisid integer[] NOT NULL,
   userid integer NOT NULL REFERENCES users,
   reportdate timestamp without time zone NOT NULL DEFAULT now(),
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.response_id_seq'::regclass),
   otherdiagnosis character varying,
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone
);

rest_client

Schema
backoffice

CREATE TABLE rest_client (
   client_code character varying NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('backoffice.rest_client_id_seq'::regclass),
   website character varying,
   email character varying NOT NULL,
   api_key character varying,
   ip_address character varying,
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp(6) without time zone,
   modifiedby integer REFERENCES users,
   createdon timestamp(6) without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL REFERENCES users,
   expired_request integer,
   client_name character varying NOT NULL
);

rest_logs

Logs of rest api v1

Schema
backoffice

CREATE TABLE rest_logs (
   end_date date,
   start_date date,
   request_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP,
   ip_address character varying(30),
   uri character varying(255),
   rest_action character varying(50) NOT NULL,
   client_id integer NOT NULL REFERENCES rest_client,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('rest_logs_id_seq'::regclass),
   metadata json,
   params json,
   exec_time real
);

results

Laboratory testing results

Schema
reference

CREATE TABLE results (
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   name character varying[] NOT NULL,
   code character varying NOT NULL,
   del boolean NOT NULL DEFAULT false,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.results_id_seq'::regclass),
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL REFERENCES users
);

riwayatvaksinasi

Vaccination history from priority disease investigation

Schema
data

CREATE TABLE riwayatvaksinasi (
   del boolean NOT NULL DEFAULT false,
   createdby integer NOT NULL REFERENCES users,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.riwayatvaksinasi_id_seq'::regclass),
   caseid integer NOT NULL REFERENCES cases,
   diseaseid integer NOT NULL REFERENCES diseases,
   tanggal date,
   msgid bigint NOT NULL,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone
);

rphu

Schema
data

CREATE TABLE rphu (
   nkv character varying,
   idcoldstorage integer,
   carcasskgweight double precision,
   livekgweight double precision,
   chiller_ton double precision,
   blastfreezer_tonperhour double precision,
   operationhourperday double precision,
   hourcapacity double precision,
   operationalend_date date,
   statuskepemilikan integer NOT NULL,
   idinfra integer NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('rphu_id_seq'::regclass),
   operationdayperweek double precision,
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL
);

rumah_suplier_pencucian_walet

rumah_suplier_pencucian_walet

Schema
data

CREATE TABLE rumah_suplier_pencucian_walet (
   triwulan integer NOT NULL,
   tahun integer NOT NULL,
   volume_kg double precision NOT NULL,
   no_registrasi character varying NOT NULL,
   infra_id integer NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('rumah_suplier_pencucian_walet_id_seq'::regclass),
   createdby integer NOT NULL REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users
);

rumah_walet

kemitraan

Schema
data

CREATE TABLE rumah_walet (
   tipe_mitra_id integer NOT NULL,
   telp_manager character varying,
   longitude double precision,
   latitude double precision,
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL REFERENCES users,
   manager character varying,
   address text,
   nik character varying,
   pemilik character varying NOT NULL,
   nib character varying NOT NULL,
   infra_id integer NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('rumah_walet_id_seq'::regclass)
);

sampling_individu

for individual sampling

Schema
data

CREATE TABLE sampling_individu (
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   modifiedby integer REFERENCES users,
   animalid integer NOT NULL,
   programid integer NOT NULL REFERENCES surveillanceprograms,
   reportdate timestamp without time zone NOT NULL DEFAULT now(),
   msgid bigint NOT NULL,
   modifiedon timestamp without time zone,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('sampling_individu_id_seq'::regclass),
   userid integer NOT NULL REFERENCES users,
   del boolean NOT NULL DEFAULT false
);

savedreportparams

Parameters for saved reports

Schema
report

CREATE TABLE savedreportparams (
   rptparamid integer NOT NULL REFERENCES reportparams,
   del boolean NOT NULL DEFAULT false,
   svdrptid integer NOT NULL REFERENCES savedreports,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('report.saved_report_params_id_seq'::regclass),
   modifiedon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL DEFAULT 1,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   paramvalue character varying,
   modifiedby integer DEFAULT 1
);

savedreports

Parameterised versions of reports for automated periodic reporting

Schema
report

CREATE TABLE savedreports (
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer DEFAULT 1,
   del boolean NOT NULL DEFAULT false,
   public boolean NOT NULL DEFAULT false,
   name character varying[] DEFAULT '{"",""}'::character varying[],
   active boolean NOT NULL DEFAULT true,
   frequency report.reportfrequency,
   delivery report.reportdelivery,
   reportid integer NOT NULL REFERENCES reports,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('report.saved_reports_id_seq'::regclass),
   createdby integer NOT NULL DEFAULT 1
);

selfcheck

Schema
sms

CREATE TABLE selfcheck (
   modem character varying,
   sent timestamp without time zone,
   received timestamp without time zone,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('sms.selfcheck_id_seq'::regclass)
);

sertifikat_kompartemen

Schema
data

CREATE TABLE sertifikat_kompartemen (
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('sertifikat_kompartemen_id_seq'::regclass),
   farm_id integer NOT NULL REFERENCES farms,
   disease_id integer[] NOT NULL,
   certificate_number character varying(255),
   start_date date NOT NULL,
   end_date date,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false
);

servers

Schema
reference

CREATE TABLE servers (
   modifiedby integer REFERENCES users,
   createdon timestamp with time zone NOT NULL DEFAULT now(),
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp with time zone,
   createdby integer NOT NULL REFERENCES users,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('servers_id_seq'::regclass),
   name character varying NOT NULL
);

sessions

Schema
backoffice

CREATE TABLE sessions (
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('backoffice.sessions_id_seq'::regclass),
   sessionid character varying,
   userid integer
);

sex

Animal sex

Schema
reference

CREATE TABLE sex (
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.sex_id_seq'::regclass),
   code character varying UNIQUE NOT NULL,
   name character varying[] NOT NULL,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now()
);

shipments

Schema
data

CREATE TABLE shipments (
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.shipments_id_seq'::regclass),
   origininfraid integer NOT NULL REFERENCES infrastructure,
   destinfraid integer REFERENCES infrastructure,
   destuserid integer REFERENCES users,
   datesent timestamp with time zone NOT NULL DEFAULT now(),
   msgid bigint NOT NULL,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp with time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp with time zone,
   del boolean NOT NULL DEFAULT false
);

signreports

Disease report for routine cases, including a list of clinical signs

Schema
data

CREATE TABLE signreports (
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.signreports_id_seq'::regclass),
   reportdate timestamp without time zone NOT NULL DEFAULT now(),
   userid integer NOT NULL REFERENCES users,
   msgid bigint NOT NULL,
   caseid integer NOT NULL REFERENCES cases,
   signsid integer[] NOT NULL,
   speciesid integer NOT NULL REFERENCES species,
   cases integer NOT NULL,
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   animalid integer REFERENCES hewan
);

signs

Clinical signs

Schema
reference

CREATE TABLE signs (
   name character varying[] NOT NULL,
   createdby integer NOT NULL REFERENCES users,
   specific boolean NOT NULL DEFAULT false,
   general boolean NOT NULL DEFAULT false,
   terminal boolean NOT NULL DEFAULT false,
   selectable boolean NOT NULL DEFAULT false,
   pelsa boolean NOT NULL DEFAULT false,
   synonym integer,
   level integer,
   description character varying[],
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   del boolean NOT NULL DEFAULT false,
   synname character varying[],
   code character varying UNIQUE,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.signs_id_seq'::regclass),
   hiercode character varying UNIQUE NOT NULL,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users
);

signs_asia

Schema
reference

CREATE TABLE signs_asia (
   cadre boolean DEFAULT false,
   level integer,
   selectable boolean DEFAULT false,
   terminal boolean DEFAULT false,
   general boolean DEFAULT false,
   specific boolean DEFAULT false,
   valid_from date NOT NULL DEFAULT '2010-01-01'::date,
   valid_to date,
   modified_by integer NOT NULL DEFAULT 1,
   modified_on timestamp without time zone NOT NULL DEFAULT now(),
   synonym integer NOT NULL DEFAULT 1,
   del boolean NOT NULL DEFAULT false,
   id integer NOT NULL,
   code character varying NOT NULL,
   sign character varying[] NOT NULL,
   description character varying[],
   hier_code character varying NOT NULL
);

signspecies

Signs valid for different species

Schema
reference

CREATE TABLE signspecies (
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.signspecies_id_seq'::regclass),
   signid integer NOT NULL REFERENCES signs,
   speciesid integer NOT NULL REFERENCES species,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now()
);

slaughtertotals

Daily abattoir slaughter totals by animal type

Schema
data

CREATE TABLE slaughtertotals (
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.slaughtertotals_id_seq'::regclass),
   reportdate timestamp without time zone NOT NULL DEFAULT now(),
   userid integer NOT NULL REFERENCES users,
   msgid bigint NOT NULL,
   animaltypeid integer NOT NULL REFERENCES animal_types,
   total integer NOT NULL DEFAULT 0,
   infrastructureid integer NOT NULL REFERENCES infrastructure,
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false
);

sms

Master table for SMS message definitions

Schema
metadata

CREATE TABLE sms (
   keyfield character varying[],
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('metadata.sms_id_seq'::regclass),
   name character varying[] NOT NULL,
   helptext character varying[],
   start_code character varying UNIQUE NOT NULL,
   error_msg character varying NOT NULL DEFAULT ::character varying,
   reply_sql character varying NOT NULL DEFAULT ::character varying,
   alert_sql character varying,
   protected boolean NOT NULL DEFAULT false,
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer DEFAULT 1 REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   permission character varying,
   tablename character varying[],
   userid_field character varying[] NOT NULL DEFAULT '{createdby}'::character varying[],
   msgid_field character varying[] NOT NULL DEFAULT '{msgid}'::character varying[],
   reportdate_field character varying[] NOT NULL DEFAULT '{createdon}'::character varying[],
   readonly boolean NOT NULL DEFAULT false,
   public boolean DEFAULT false,
   version integer NOT NULL DEFAULT 1,
   groupid integer REFERENCES sms_groups
);

sms_field_types

Field types for SMS message definitions

Schema
reference

CREATE TABLE sms_field_types (
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.sms_field_types_id_seq'::regclass),
   name character varying NOT NULL,
   field_type character varying NOT NULL,
   description character varying NOT NULL,
   del boolean NOT NULL DEFAULT false,
   app_type character varying
);

sms_fields

Field definitions for SMS messages

Schema
metadata

CREATE TABLE sms_fields (
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   targettable integer,
   hidden boolean NOT NULL DEFAULT false,
   title character varying,
   help character varying[],
   smsid integer NOT NULL REFERENCES sms,
   natorder integer NOT NULL,
   name character varying[] NOT NULL,
   optional boolean NOT NULL DEFAULT false,
   data_type integer NOT NULL,
   groupsequence integer NOT NULL DEFAULT 0,
   lu_sql character varying DEFAULT ::character varying,
   fieldname character varying NOT NULL DEFAULT ::character varying,
   error_msg character varying NOT NULL DEFAULT ::character varying,
   list_sql character varying,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('metadata.sms_fields_id_seq'::regclass)
);

sms_format

Schema
backoffice

CREATE TABLE sms_format (
   ?column? text
);

sms_groups

Schema
metadata

CREATE TABLE sms_groups (
   natord integer NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('metadata.sms_groups_id_seq'::regclass),
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   name character varying[] NOT NULL,
   comment character varying[],
   createdby integer NOT NULL REFERENCES users
);

sms_operators

Telephone network operators

Schema
reference

CREATE TABLE sms_operators (
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   createdby integer NOT NULL REFERENCES users,
   name character varying,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.sms_operators_id_seq'::regclass),
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users
);

sms_prefixes

Mobile phone prefixes

Schema
reference

CREATE TABLE sms_prefixes (
   createdby integer NOT NULL REFERENCES users,
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.sms_prefixes_id_seq'::regclass),
   prefix integer,
   operatorid integer NOT NULL REFERENCES sms_operators,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now()
);

smserrorchecks

Follow-up by coordinators of users who made errors with SMS formats

Schema
data

CREATE TABLE smserrorchecks (
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.smserrorchecks_id_seq'::regclass),
   userid integer NOT NULL REFERENCES users,
   contactdate timestamp without time zone NOT NULL,
   action smscheckaction,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedon timestamp without time zone,
   modifiedby integer,
   del boolean NOT NULL DEFAULT false
);

species

Species and breeds

Schema
reference

CREATE TABLE species (
   level integer NOT NULL,
   name character varying[] NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.species_id_seq'::regclass),
   sikhnascode integer,
   lab boolean NOT NULL DEFAULT false,
   selectable boolean NOT NULL DEFAULT false,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   code character varying UNIQUE,
   hiercode character varying UNIQUE NOT NULL
);

specimenforms

The form of a laboratory specimen (perservative etc)

Schema
reference

CREATE TABLE specimenforms (
   hiercode character varying UNIQUE NOT NULL,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   createdby integer NOT NULL REFERENCES users,
   name character varying[] NOT NULL,
   code character varying,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.specimenforms_id_seq'::regclass)
);

specimens

Specimens from animals in a laboratory submission

Schema
lab

CREATE TABLE specimens (
   msgid bigint,
   animalid integer NOT NULL REFERENCES animals,
   specimenformid integer NOT NULL REFERENCES specimenforms,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('lab.specimens_id_seq'::regclass),
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   specimentypeid integer NOT NULL REFERENCES specimentypes,
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   del boolean NOT NULL DEFAULT false
);

specimentypes

The type of a laboratory specimen (tissue of origin)

Schema
reference

CREATE TABLE specimentypes (
   name character varying[] NOT NULL,
   code character varying,
   hiercode character varying UNIQUE NOT NULL,
   createdby integer NOT NULL REFERENCES users,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.specimentypes_id_seq'::regclass),
   del boolean NOT NULL DEFAULT false,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone
);

sql_features

Schema
information_schema

CREATE TABLE sql_features (
   comments information_schema.character_data,
   sub_feature_name information_schema.character_data,
   is_supported information_schema.yes_or_no,
   is_verified_by information_schema.character_data,
   sub_feature_id information_schema.character_data,
   feature_name information_schema.character_data,
   feature_id information_schema.character_data
);

sql_implementation_info

Schema
information_schema

CREATE TABLE sql_implementation_info (
   implementation_info_id information_schema.character_data,
   character_value information_schema.character_data,
   comments information_schema.character_data,
   implementation_info_name information_schema.character_data,
   integer_value information_schema.cardinal_number
);

sql_languages

Schema
information_schema

CREATE TABLE sql_languages (
   sql_language_integrity information_schema.character_data,
   sql_language_implementation information_schema.character_data,
   sql_language_programming_language information_schema.character_data,
   sql_language_binding_style information_schema.character_data,
   sql_language_source information_schema.character_data,
   sql_language_year information_schema.character_data,
   sql_language_conformance information_schema.character_data
);

sql_packages

Schema
information_schema

CREATE TABLE sql_packages (
   feature_name information_schema.character_data,
   feature_id information_schema.character_data,
   comments information_schema.character_data,
   is_verified_by information_schema.character_data,
   is_supported information_schema.yes_or_no
);

sql_parts

Schema
information_schema

CREATE TABLE sql_parts (
   feature_name information_schema.character_data,
   feature_id information_schema.character_data,
   comments information_schema.character_data,
   is_verified_by information_schema.character_data,
   is_supported information_schema.yes_or_no
);

sql_sizing

Schema
information_schema

CREATE TABLE sql_sizing (
   comments information_schema.character_data,
   sizing_id information_schema.cardinal_number,
   supported_value information_schema.cardinal_number,
   sizing_name information_schema.character_data
);

sql_sizing_profiles

Schema
information_schema

CREATE TABLE sql_sizing_profiles (
   profile_id information_schema.character_data,
   sizing_name information_schema.character_data,
   sizing_id information_schema.cardinal_number,
   comments information_schema.character_data,
   required_value information_schema.cardinal_number
);

status_pmk

List of status PMK

Schema
reference

CREATE TABLE status_pmk (
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('status_pmk_id_seq'::regclass),
   modifiedby integer REFERENCES users,
   createdby integer NOT NULL REFERENCES users,
   description character varying(255),
   question character varying(255),
   del boolean NOT NULL DEFAULT false,
   createdon timestamp without time zone DEFAULT CURRENT_TIMESTAMP,
   modifiedon timestamp without time zone,
   name character varying(20) NOT NULL
);

statusasuransi

status asuransi

Schema
reference

CREATE TABLE statusasuransi (
   del boolean NOT NULL DEFAULT false,
   name character varying[] NOT NULL,
   code character varying NOT NULL,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.statusasuransi_id_seq'::regclass)
);

statuskepemilikan

Schema
reference

CREATE TABLE statuskepemilikan (
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL,
   name character varying NOT NULL,
   id integer NOT NULL
);

statusrepro

Reproductive statuses

Schema
reference

CREATE TABLE statusrepro (
   modifiedon timestamp without time zone,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL,
   name character varying[] NOT NULL,
   id integer NOT NULL,
   del boolean NOT NULL DEFAULT false,
   modifiedby integer
);

stocktake

Schema
data

CREATE TABLE stocktake (
   infrastructureid integer NOT NULL REFERENCES infrastructure,
   stockdate timestamp with time zone NOT NULL DEFAULT now(),
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.stocktake_id_seq'::regclass),
   modifiedon timestamp with time zone,
   modifiedby integer REFERENCES users,
   del boolean NOT NULL DEFAULT false,
   createdon timestamp with time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL REFERENCES users,
   msgid bigint NOT NULL
);

stokbibit

stokbibit hijauan

Schema
data

CREATE TABLE stokbibit (
   jenisbibitid integer NOT NULL REFERENCES jenisbibit,
   msgid bigint NOT NULL,
   jenishijauanid integer NOT NULL,
   total double precision NOT NULL,
   harga integer NOT NULL,
   asalid integer NOT NULL,
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   reportdate timestamp without time zone NOT NULL DEFAULT now(),
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.stokbibit_id_seq'::regclass)
);

straws

Stud ID

Schema
data

CREATE TABLE straws (
   jumlah integer NOT NULL,
   del boolean NOT NULL DEFAULT false,
   tanggalproduksi date NOT NULL,
   idhewan bigint NOT NULL REFERENCES hewan,
   idbib integer NOT NULL REFERENCES infrastructure,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedon timestamp without time zone,
   idpembuatan character varying NOT NULL,
   modifiedby integer REFERENCES users,
   idpejantan character varying NOT NULL,
   spesies integer NOT NULL DEFAULT 22 REFERENCES species,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.straws_id_seq'::regclass),
   createdby integer NOT NULL DEFAULT 1 REFERENCES users
);

straws

List of semen straws for artificial insemination

Schema
data

CREATE TABLE straws (
   idpembuatan character varying NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.straws_id_seq'::regclass),
   idpejantan character varying NOT NULL,
   idbib integer NOT NULL REFERENCES infrastructure,
   idhewan bigint NOT NULL REFERENCES hewan,
   tanggalproduksi date NOT NULL,
   jumlah integer NOT NULL,
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   spesies integer NOT NULL DEFAULT 22 REFERENCES species
);

straws

Date of production

Schema
data

CREATE TABLE straws (
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.straws_id_seq'::regclass),
   spesies integer NOT NULL DEFAULT 22 REFERENCES species,
   idpejantan character varying NOT NULL,
   modifiedby integer REFERENCES users,
   idpembuatan character varying NOT NULL,
   del boolean NOT NULL DEFAULT false,
   idbib integer NOT NULL REFERENCES infrastructure,
   idhewan bigint NOT NULL REFERENCES hewan,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   tanggalproduksi date NOT NULL,
   modifiedon timestamp without time zone,
   jumlah integer NOT NULL
);

straws

Collection Centre

Schema
data

CREATE TABLE straws (
   idpembuatan character varying NOT NULL,
   spesies integer NOT NULL DEFAULT 22 REFERENCES species,
   modifiedon timestamp without time zone,
   idpejantan character varying NOT NULL,
   tanggalproduksi date NOT NULL,
   modifiedby integer REFERENCES users,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.straws_id_seq'::regclass),
   jumlah integer NOT NULL,
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   del boolean NOT NULL DEFAULT false,
   idbib integer NOT NULL REFERENCES infrastructure,
   idhewan bigint NOT NULL REFERENCES hewan,
   createdon timestamp without time zone NOT NULL DEFAULT now()
);

straws

Batch Number

Schema
data

CREATE TABLE straws (
   jumlah integer NOT NULL,
   spesies integer NOT NULL DEFAULT 22 REFERENCES species,
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.straws_id_seq'::regclass),
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   idbib integer NOT NULL REFERENCES infrastructure,
   idpembuatan character varying NOT NULL,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   idhewan bigint NOT NULL REFERENCES hewan,
   tanggalproduksi date NOT NULL,
   idpejantan character varying NOT NULL,
   del boolean NOT NULL DEFAULT false
);

strawshipment

Schema
data

CREATE TABLE strawshipment (
   total integer NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.strawshipment_id_seq'::regclass),
   shipmentid integer REFERENCES shipments,
   receiptid integer REFERENCES receipt,
   stocktakeid integer REFERENCES stocktake,
   breedid integer REFERENCES species,
   strawid integer REFERENCES straws,
   msgid bigint NOT NULL,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp with time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp with time zone,
   del boolean NOT NULL DEFAULT false
);

submission_reasons

Schema
reference

CREATE TABLE submission_reasons (
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.submission_reasons_id_seq'::regclass),
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL REFERENCES users,
   name character varying[] NOT NULL,
   code character varying UNIQUE NOT NULL
);

submissionreasons

Reason for laboratory submission

Schema
reference

CREATE TABLE submissionreasons (
   createdby integer NOT NULL REFERENCES users,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.submissionreasons_id_seq'::regclass),
   code character varying NOT NULL,
   name character varying[] NOT NULL,
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   description character varying[]
);

submissions

Notification of laboratory submissions from field cases. This is distinct from the lab.labsubmissions table (master table for laboratory submission management)

Schema
data

CREATE TABLE submissions (
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.submissions_id_seq'::regclass),
   reportdate timestamp without time zone,
   userid integer NOT NULL REFERENCES users,
   msgid bigint,
   caseid integer NOT NULL REFERENCES cases,
   specimentypeid integer NOT NULL REFERENCES specimentypes,
   specimenformid integer NOT NULL REFERENCES specimenforms,
   total integer NOT NULL,
   labid integer NOT NULL REFERENCES infrastructure,
   sectionid integer REFERENCES labsections,
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer DEFAULT 1,
   modifiedon timestamp without time zone NOT NULL DEFAULT now(),
   del boolean NOT NULL DEFAULT false
);

submittertypes

Classification of laboratory submitter types

Schema
reference

CREATE TABLE submittertypes (
   createdby integer NOT NULL REFERENCES users,
   name character varying[] NOT NULL,
   code character varying NOT NULL,
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.submittertypes_id_seq'::regclass),
   createdon timestamp without time zone NOT NULL DEFAULT now()
);

sumber

Reference list of possible sources of introduction of infection

Schema
reference

CREATE TABLE sumber (
   createdby integer NOT NULL REFERENCES users,
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.sumber_id_seq'::regclass),
   code character varying NOT NULL,
   name character varying[] NOT NULL,
   createdon timestamp without time zone NOT NULL DEFAULT now()
);

sumberanggaran

sumber anggaran

Schema
reference

CREATE TABLE sumberanggaran (
   createdby integer NOT NULL,
   code character varying,
   name character varying[] NOT NULL,
   id integer NOT NULL,
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer,
   createdon timestamp without time zone NOT NULL DEFAULT now()
);

sumberpenyakit

Suspected source of infection as determined during outbreak investigations

Schema
data

CREATE TABLE sumberpenyakit (
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.sumberpenyakit_id_seq'::regclass),
   caseid integer NOT NULL REFERENCES cases,
   sumberid integer NOT NULL REFERENCES sumber,
   locationid integer REFERENCES locations,
   msgid bigint NOT NULL,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false
);

surveillance

Both lab-based and field surveillance reports

Schema
data

CREATE TABLE surveillance (
   labid integer,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.surveillance_id_seq'::regclass),
   reportdate timestamp without time zone NOT NULL DEFAULT now(),
   userid integer NOT NULL REFERENCES users,
   msgid bigint NOT NULL,
   programid integer NOT NULL REFERENCES surveillanceprograms,
   locationid integer NOT NULL REFERENCES locations,
   speciesid integer NOT NULL REFERENCES species,
   specimens integer NOT NULL,
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   pos integer,
   neg integer
);

surveillanceprograms

List of surveillance programs

Schema
data

CREATE TABLE surveillanceprograms (
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.surveillanceprograms_id_seq'::regclass),
   name character varying NOT NULL,
   startdate date NOT NULL DEFAULT now(),
   enddate date,
   area integer[] NOT NULL,
   diseaseid integer[],
   specimentypeid integer[] NOT NULL,
   labsectionid integer[] NOT NULL,
   purpose integer NOT NULL DEFAULT 1,
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   specimenformid integer[],
   diseaseeventid integer REFERENCES diseaseevents
);

survpasar

Tabel untuk surveilans pasar kesmavet

Schema
data

CREATE TABLE survpasar (
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.survpasar_id_seq'::regclass),
   idinfrastruktur integer NOT NULL REFERENCES infrastructure,
   idkit integer NOT NULL REFERENCES testtypes,
   idproduk integer NOT NULL REFERENCES species,
   pos integer NOT NULL DEFAULT 0,
   neg integer NOT NULL DEFAULT 0,
   idtanda integer[] NOT NULL,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   msgid bigint
);

syndromereports

Disease report for priority cases including a syndrome classification

Schema
data

CREATE TABLE syndromereports (
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.syndromereports_id_seq'::regclass),
   caseid integer NOT NULL REFERENCES cases,
   syndromeid integer NOT NULL REFERENCES syndromes,
   speciesid integer NOT NULL REFERENCES species,
   cases integer NOT NULL,
   reportdate timestamp without time zone NOT NULL DEFAULT now(),
   userid integer NOT NULL REFERENCES users,
   msgid bigint NOT NULL,
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false
);

syndromes

The disease which the syndrome might reflect

Schema
reference

CREATE TABLE syndromes (
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.syndromes_id_seq'::regclass),
   code character varying(6) UNIQUE NOT NULL,
   description character varying[],
   name character varying[] NOT NULL,
   del boolean NOT NULL DEFAULT false,
   targetspeciesid integer[],
   targetdiseaseid integer,
   modifiedon timestamp without time zone
);

syndromes

Defined syndromes related to priority diseases

Schema
reference

CREATE TABLE syndromes (
   modifiedon timestamp without time zone,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.syndromes_id_seq'::regclass),
   code character varying(6) UNIQUE NOT NULL,
   name character varying[] NOT NULL,
   description character varying[],
   targetdiseaseid integer,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   del boolean NOT NULL DEFAULT false,
   targetspeciesid integer[]
);

syndromes

Syndrome name in Bahasa [1] and English [2]

Schema
reference

CREATE TABLE syndromes (
   targetdiseaseid integer,
   targetspeciesid integer[],
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.syndromes_id_seq'::regclass),
   code character varying(6) UNIQUE NOT NULL,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   description character varying[],
   name character varying[] NOT NULL,
   createdby integer NOT NULL REFERENCES users
);

tablefields

Schema
metadata

CREATE TABLE tablefields (
   modifiedby integer,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('metadata.tablefields_id_seq'::regclass),
   displayname character varying[] NOT NULL DEFAULT '{"",""}'::character varying[],
   description character varying,
   typeid integer NOT NULL REFERENCES fieldtypes,
   fldname character varying NOT NULL,
   tableid integer NOT NULL REFERENCES datatables,
   keyfld boolean NOT NULL DEFAULT false,
   mandatory boolean NOT NULL DEFAULT false,
   multiple boolean NOT NULL DEFAULT false,
   hidden boolean NOT NULL DEFAULT false,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL DEFAULT 1,
   modifiedon timestamp without time zone,
   del boolean DEFAULT false
);

tandaklinis

Clinical signs observed during an outbreak investigation. Distinct from the signs reported in Signreport, as signreport signs are reproted by Pelsa, but TandaKlinis signs are reported by a vet

Schema
data

CREATE TABLE tandaklinis (
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.tandaklinis_id_seq'::regclass),
   caseid integer NOT NULL REFERENCES cases,
   signsid integer[] NOT NULL,
   msgid bigint NOT NULL,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false
);

targets

Target for laboratory tests (organism etc)

Schema
reference

CREATE TABLE targets (
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.targets_id_seq'::regclass),
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL REFERENCES users,
   diseaseid integer REFERENCES diseases,
   name character varying[] NOT NULL,
   hiercode character varying,
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users
);

templates

HTML templates for reporting

Schema
report

CREATE TABLE templates (
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   comment character varying,
   template character varying[] NOT NULL,
   code character varying NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('report.templates_id_seq'::regclass),
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   createdby integer NOT NULL REFERENCES users,
   modifiedby integer REFERENCES users
);

templates

Schema
backoffice

CREATE TABLE templates (
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('templates_id_seq'::regclass),
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL REFERENCES users,
   description text,
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   provider_id integer NOT NULL REFERENCES providers,
   approved boolean NOT NULL DEFAULT false,
   template_format character varying(255) NOT NULL,
   template_id character varying(255) NOT NULL,
   code character varying(30) NOT NULL
);

temptesttypes

Schema
backoffice

CREATE TABLE temptesttypes (
   modifiedby integer,
   name character varying[],
   targetid integer,
   createdby integer,
   methodid integer,
   rapid boolean,
   del boolean,
   modifiedon timestamp without time zone,
   createdon timestamp without time zone,
   id integer,
   code character varying
);

testresults

Column to hold aggregated data values until processing arrangements can be agreed

Schema
lab

CREATE TABLE testresults (
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('lab.testresults_id_seq'::regclass),
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('lab.testresults_id_seq'::regclass),
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('lab.testresults_id_seq'::regclass),
   findingquant double precision,
   findingquant double precision,
   findingquant double precision,
   resultid integer REFERENCES results,
   resultid integer REFERENCES results,
   resultid integer REFERENCES results,
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedby integer REFERENCES users,
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   modifiedon timestamp without time zone,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   testid integer NOT NULL REFERENCES tests,
   testid integer NOT NULL REFERENCES tests,
   del boolean NOT NULL DEFAULT false,
   del boolean NOT NULL DEFAULT false,
   uncertaintytypeid integer REFERENCES uncertaintytypes,
   uncertaintytypeid integer REFERENCES uncertaintytypes,
   uncertaintytypeid integer REFERENCES uncertaintytypes,
   msgid bigint,
   msgid bigint,
   msgid bigint,
   jumlahpos integer,
   jumlahpos integer,
   jumlahpos integer,
   jumlahneg integer,
   jumlahneg integer,
   jumlahneg integer,
   jumlahrusak integer,
   jumlahrusak integer,
   jumlahrusak integer,
   findingqual integer REFERENCES findings,
   findingqual integer REFERENCES findings,
   findingqual integer REFERENCES findings,
   testid integer NOT NULL REFERENCES tests
);

testresults

Results of laboratory testing

Schema
lab

CREATE TABLE testresults (
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   del boolean NOT NULL DEFAULT false,
   findingqual integer REFERENCES findings,
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   jumlahneg integer,
   resultid integer REFERENCES results,
   findingquant double precision,
   jumlahrusak integer,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   jumlahpos integer,
   testid integer NOT NULL REFERENCES tests,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('lab.testresults_id_seq'::regclass),
   msgid bigint,
   uncertaintytypeid integer REFERENCES uncertaintytypes
);

tests

Tests performed on a specimen in a laboratory submission

Schema
lab

CREATE TABLE tests (
   testtypeid integer NOT NULL REFERENCES testtypes,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('lab.tests_id_seq'::regclass),
   msgid bigint,
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   datetested timestamp without time zone NOT NULL,
   specimenid integer NOT NULL REFERENCES specimens
);

testtypes

Master table of laboratory test types

Schema
reference

CREATE TABLE testtypes (
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.tests_id_seq'::regclass),
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL REFERENCES users,
   methodid integer NOT NULL REFERENCES methods,
   targetid integer NOT NULL REFERENCES targets,
   name character varying[] NOT NULL,
   code character varying UNIQUE,
   del boolean NOT NULL DEFAULT false,
   rapid boolean NOT NULL DEFAULT false
);

testunits

Quantitative units for laboratory test findings

Schema
reference

CREATE TABLE testunits (
   del boolean NOT NULL DEFAULT false,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.testunits_id_seq'::regclass),
   name character varying,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone
);

tindakan

Reference table of disease control activity types

Schema
reference

CREATE TABLE tindakan (
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL REFERENCES users,
   units character varying[] NOT NULL,
   name character varying[] NOT NULL,
   hiercode character varying NOT NULL,
   code character varying NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.tindakan_id_seq'::regclass)
);

tindakanlain

Specific disease control activities undertaken under a program

Schema
data

CREATE TABLE tindakanlain (
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.tindakanlain_id_seq'::regclass),
   programtindakanid integer NOT NULL REFERENCES programtindakan,
   tindakanid integer NOT NULL REFERENCES tindakan,
   jumlah integer NOT NULL,
   locationid integer NOT NULL REFERENCES locations,
   msgid bigint NOT NULL,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users
);

tipe_kemitraan

kemitraan

Schema
reference

CREATE TABLE tipe_kemitraan (
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   name character varying NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('tipe_kemitraan_id_seq'::regclass),
   createdby integer NOT NULL REFERENCES users
);

tipeakhir

Disposal types for animals

Schema
reference

CREATE TABLE tipeakhir (
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   name character varying[] NOT NULL,
   code character varying NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('tipeakhir_id_seq'::regclass),
   del boolean NOT NULL DEFAULT false,
   live boolean DEFAULT false
);

tipekejadian

Event types for individual animals

Schema
reference

CREATE TABLE tipekejadian (
   code character varying NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.tipekejadian_id_seq'::regclass),
   name character varying[] NOT NULL,
   eventdata character varying,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   lookup_query character varying
);

tipepemilik

Schema
backoffice

CREATE TABLE tipepemilik (
   del boolean NOT NULL DEFAULT false,
   name character varying[] NOT NULL,
   modifiedon timestamp without time zone,
   code character varying NOT NULL,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL REFERENCES users,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('backoffice.tipepemilik_id_seq'::regclass)
);

tipepenanganan

Types of procedures for non-case animals

Schema
reference

CREATE TABLE tipepenanganan (
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('tipepenanganan_id_seq'::regclass),
   createdby integer NOT NULL REFERENCES users,
   name character varying[] NOT NULL,
   hiercode character varying,
   code character varying NOT NULL,
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone
);

trainingtypes

Classification of training course types

Schema
reference

CREATE TABLE trainingtypes (
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL REFERENCES users,
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   name character varying[] NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.trainingtypes_id_seq'::regclass)
);

translation

Multilingual translation table for strings displayed in SMS, reports and other outputs

Schema
backoffice

CREATE TABLE translation (
   class integer,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('backoffice.translation_id_seq'::regclass),
   code character varying NOT NULL,
   name character varying[] NOT NULL,
   comment character varying,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   type boolean NOT NULL DEFAULT false,
   templateid integer REFERENCES templates
);

translationclasses

Schema
reference

CREATE TABLE translationclasses (
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.translationclasses_id_seq'::regclass),
   name character varying[] NOT NULL,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false
);

treatmentanimals

Animals treated associated with a case

Schema
data

CREATE TABLE treatmentanimals (
   userid integer NOT NULL REFERENCES users,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.treatmentanimals_id_seq'::regclass),
   reportdate timestamp without time zone NOT NULL DEFAULT now(),
   msgid bigint NOT NULL,
   treatmentid integer NOT NULL REFERENCES treatments,
   drugid integer NOT NULL REFERENCES drugs,
   dose numeric(8,3),
   animals integer NOT NULL DEFAULT 1,
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   animalid integer[]
);

treatments

Master table of treatments associated with a case

Schema
data

CREATE TABLE treatments (
   reportdate timestamp without time zone NOT NULL DEFAULT now(),
   del boolean NOT NULL DEFAULT false,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   msgid bigint NOT NULL,
   caseid integer NOT NULL REFERENCES cases,
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   modifiedon timestamp without time zone,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.treatments_id_seq'::regclass),
   userid integer NOT NULL REFERENCES users
);

ujicepat

Field rapid test results

Schema
data

CREATE TABLE ujicepat (
   modifiedby integer REFERENCES users,
   del boolean NOT NULL DEFAULT false,
   neg integer NOT NULL,
   pos integer NOT NULL,
   speciesid integer NOT NULL REFERENCES species,
   testtypeid integer NOT NULL REFERENCES testtypes,
   caseid integer NOT NULL REFERENCES cases,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.ujicepat_id_seq'::regclass),
   msgid bigint NOT NULL,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedon timestamp without time zone
);

uncertaintytypes

Uncertainty around a quantitative laboratory test finding (>, <, ~ etc)

Schema
reference

CREATE TABLE uncertaintytypes (
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   name character varying[] NOT NULL,
   code character varying NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.uncertaintytypes_id_seq'::regclass),
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false
);

urlinsertfields

Metadata for system to allow data to be inserted into a table directly from a URL query string, which may be submitted from outside the website (eg. clicked from an email). This table defines the parameters to be submitted.

Schema
metadata

CREATE TABLE urlinsertfields (
   del boolean NOT NULL DEFAULT false,
   paramtype character varying NOT NULL,
   paramname character varying NOT NULL,
   urlinsertjobid integer NOT NULL REFERENCES urlinsertjobs,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('metadata.urlinsertfields_id_seq'::regclass),
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedon timestamp without time zone,
   modifiedby integer
);

urlinsertjobs

Metadata for system to allow data to be inserted into a table directly from a URL query string, which may be submitted from outside the website (eg. clicked from an email). This table defines the messages.

Schema
metadata

CREATE TABLE urlinsertjobs (
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   modifiedon timestamp without time zone,
   modifiedby integer,
   name character varying NOT NULL,
   insertsql character varying NOT NULL,
   del boolean NOT NULL DEFAULT false,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('metadata.urlinsertjobs_id_seq'::regclass),
   replysql character varying NOT NULL,
   createdon timestamp without time zone NOT NULL DEFAULT now()
);

user_hierarchy

Schema
backoffice

CREATE TABLE user_hierarchy (
   del boolean NOT NULL DEFAULT false,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('backoffice.user_hierarchy_id_seq'::regclass),
   superiorid integer REFERENCES users,
   inferiorid integer REFERENCES users,
   relation relationshiptype,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone
);

user_infrastructures

Schema
backoffice

CREATE TABLE user_infrastructures (
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   modifiedby integer,
   createdon timestamp without time zone DEFAULT CURRENT_TIMESTAMP,
   createdby integer NOT NULL,
   user_id integer UNIQUE NOT NULL,
   user_id integer NOT NULL REFERENCES users,
   infra_id integer UNIQUE NOT NULL,
   infra_id integer NOT NULL REFERENCES infrastructure,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('user_infrastructures_id_seq'::regclass)
);

user_kompartemen

Schema
backoffice

CREATE TABLE user_kompartemen (
   user_id integer NOT NULL REFERENCES users,
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL REFERENCES users,
   farm_id integer NOT NULL REFERENCES farms,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('user_kompartemen_id_seq'::regclass)
);

user_permissions

Permissions set at the individual user level (overrides group permissions)

Schema
backoffice

CREATE TABLE user_permissions (
   del boolean NOT NULL DEFAULT false,
   userid integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('backoffice.user_permissions_id_seq'::regclass),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   createdby integer NOT NULL REFERENCES users,
   permission integer NOT NULL,
   permission_typeid integer NOT NULL REFERENCES permission_types
);

userreportslog

Schema
report

CREATE TABLE userreportslog (
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL DEFAULT 0 REFERENCES users,
   svdrptid integer[] NOT NULL,
   userid integer REFERENCES users,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('report.userreportslog_id_seq'::regclass)
);

users

Master users table

Schema
backoffice

CREATE TABLE users (
   restclient_id integer REFERENCES rest_client,
   national_code character varying(255),
   address text,
   email_confirm_uuid uuid DEFAULT gen_random_uuid(),
   email_confirmed timestamp with time zone,
   nik character varying(16),
   centroid_proj public.geometry(Point,3857),
   deleted_email character varying,
   msgid bigint,
   time_expired integer DEFAULT 0,
   picture character varying,
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL REFERENCES users,
   groupid integer[] NOT NULL,
   infraid integer,
   area integer[],
   locationid integer,
   pin text DEFAULT backoffice.create_pin(),
   password character varying,
   userlanguage integer NOT NULL DEFAULT 1,
   email character varying,
   phone phonenumber,
   surname character varying,
   firstname character varying NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('backoffice.users_id_seq'::regclass)
);

users_babinsa

List BABINSA/BABINKAMTIBNAS of INDONESIA

Schema
backoffice

CREATE TABLE users_babinsa (
   name character varying(255) NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('users_babinsa_id_seq'::regclass),
   nrp character varying(20),
   phone character varying(15),
   pangkat character varying(30),
   structure_name character varying(255),
   status character(10),
   address text,
   jabatan character varying(255),
   del boolean NOT NULL DEFAULT false,
   createdon timestamp without time zone DEFAULT CURRENT_TIMESTAMP,
   modifiedon timestamp without time zone,
   createdby integer NOT NULL REFERENCES users,
   modifiedby integer REFERENCES users
);

users_otp

List OTP code by public register user

Schema
backoffice

CREATE TABLE users_otp (
   createdon timestamp without time zone DEFAULT CURRENT_TIMESTAMP,
   verified boolean NOT NULL DEFAULT false,
   del boolean NOT NULL DEFAULT false,
   attempt_tries integer DEFAULT 0,
   expired_at integer DEFAULT 0,
   token text,
   modifiedon timestamp without time zone,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('users_otp_id_seq'::regclass),
   code character varying(4) NOT NULL,
   user_id integer NOT NULL REFERENCES users
);

users_test

Schema
backoffice

CREATE TABLE users_test (
   time_expired integer,
   picture character varying,
   del boolean,
   msgid bigint,
   modifiedon timestamp without time zone,
   modifiedby integer,
   locationid integer,
   pin text,
   password character varying,
   userlanguage integer,
   email character varying,
   phone phonenumber,
   surname character varying,
   firstname character varying,
   id integer,
   createdon timestamp without time zone,
   createdby integer,
   groupid integer[],
   infraid integer,
   area integer[]
);

vaccination_individu

Schema
data

CREATE TABLE vaccination_individu (
   programid integer NOT NULL REFERENCES vaccinationprograms,
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   idhewan bigint NOT NULL,
   msgid bigint NOT NULL,
   userid integer NOT NULL REFERENCES users,
   reportdate timestamp without time zone NOT NULL DEFAULT now(),
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.vaccination_individu_id_seq'::regclass)
);

vaccination_targets

Schema
data

CREATE TABLE vaccination_targets (
   total_target integer,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('vaccination_targets_id_seq'::regclass),
   location_id integer NOT NULL REFERENCES locations,
   disease_id integer NOT NULL REFERENCES diseases
);

vaccinationprograms

Vaccination programs

Schema
data

CREATE TABLE vaccinationprograms (
   startdate date NOT NULL DEFAULT now(),
   purpose integer NOT NULL DEFAULT 1,
   vaccineid integer[] NOT NULL,
   area integer[] NOT NULL,
   enddate date,
   diseaseid integer[] NOT NULL,
   dosespusat integer NOT NULL DEFAULT 0,
   dosesprovinsi integer NOT NULL DEFAULT 0,
   doseskabupaten integer NOT NULL DEFAULT 0,
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   diseaseeventid integer REFERENCES diseaseevents,
   name character varying NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.vaccinationprograms_id_seq'::regclass)
);

vaccinations

Village/farm level vaccination events associated with a vaccination program

Schema
data

CREATE TABLE vaccinations (
   locationid integer NOT NULL REFERENCES locations,
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   booster integer,
   firstdose integer NOT NULL DEFAULT 0,
   speciesid integer NOT NULL REFERENCES species,
   programid integer NOT NULL REFERENCES vaccinationprograms,
   msgid bigint NOT NULL,
   userid integer NOT NULL REFERENCES users,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.vaccinations_id_seq'::regclass),
   reportdate timestamp without time zone NOT NULL DEFAULT now()
);

vachistory

Vaccination history of an animal in a laboratory submission

Schema
lab

CREATE TABLE vachistory (
   vacdate date,
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   msgid bigint,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL DEFAULT 1 REFERENCES users,
   vaccineid integer REFERENCES drugs,
   diseaseid integer REFERENCES diseases,
   animalid integer REFERENCES animals,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('lab.vachistory_id_seq'::regclass)
);

valdata

Schema
backoffice

CREATE TABLE valdata (
   ferr character varying,
   fsql character varying,
   terr character varying,
   tsql character varying
);

warna

Animal colour

Schema
reference

CREATE TABLE warna (
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL REFERENCES users,
   name character varying[] NOT NULL,
   code character varying NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.warna_id_seq'::regclass)
);

weekdays

Days of the week

Schema
reference

CREATE TABLE weekdays (
   del boolean NOT NULL DEFAULT false,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.weekdays_id_seq'::regclass),
   name character varying[] NOT NULL,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL REFERENCES users,
   code character varying NOT NULL,
   modifiedon timestamp without time zone
);

yii2session

Schema
backoffice

CREATE TABLE yii2session (
   id character varying NOT NULL,
   expire integer,
   data text
);

yiisession

Session management for web system

Schema
backoffice

CREATE TABLE yiisession (
   userid integer,
   recordid integer UNIQUE NOT NULL DEFAULT nextval('backoffice.yiisession_recordid_seq'::regclass),
   data text,
   expire integer,
   id character varying PRIMARY KEY NOT NULL
);

zataktif

Composition of drugs by regulation status

Schema
reference

CREATE TABLE zataktif (
   modifiedon timestamp without time zone,
   del boolean NOT NULL DEFAULT false,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('reference.zataktif_id_seq'::regclass),
   name character varying[] NOT NULL,
   code character varying,
   createdby integer NOT NULL REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   modifiedby integer REFERENCES users
);

zoonoses

Data on human involvement in suspected zoonotic disease cases

Schema
data

CREATE TABLE zoonoses (
   terpapar integer NOT NULL,
   id integer PRIMARY KEY NOT NULL DEFAULT nextval('data.zoonoses_id_seq'::regclass),
   del boolean NOT NULL DEFAULT false,
   modifiedon timestamp without time zone,
   modifiedby integer REFERENCES users,
   createdon timestamp without time zone NOT NULL DEFAULT now(),
   createdby integer NOT NULL REFERENCES users,
   sakit integer NOT NULL,
   msgid bigint NOT NULL,
   mati integer NOT NULL,
   caseid integer NOT NULL REFERENCES cases
);