49 lines
3.5 KiB
SQL
49 lines
3.5 KiB
SQL
COMMENT ON FUNCTION correct_sequence(p_sequence text, p_col text, p_table text) IS ' Often the primary key is a sequence number and sometimes the value of the sequence is not synchronized with the primary key ( p_sequence : sequence name, p_col : col of the pk,p_table : concerned table';
|
||
COMMENT ON TABLE "action" IS 'The different privileges';
|
||
COMMENT ON TABLE action_gestion IS 'Action for Managing';
|
||
COMMENT ON TABLE attr_def IS 'The available attributs for the cards';
|
||
COMMENT ON TABLE attr_min IS 'The value of attributs for the cards';
|
||
COMMENT ON TABLE bilan IS 'contains the template and the data for generating different documents ';
|
||
COMMENT ON COLUMN bilan.b_id IS 'primary key';
|
||
COMMENT ON COLUMN bilan.b_name IS 'Name of the document';
|
||
COMMENT ON COLUMN bilan.b_file_template IS 'path of the template (document/...)';
|
||
COMMENT ON COLUMN bilan.b_file_form IS 'path of the file with forms';
|
||
COMMENT ON COLUMN bilan.b_type IS 'type = ODS, RTF...';
|
||
COMMENT ON TABLE centralized IS 'The centralized journal';
|
||
COMMENT ON TABLE document IS 'This table contains all the documents : summary and lob files';
|
||
COMMENT ON TABLE document_modele IS ' contains all the template for the documents';
|
||
COMMENT ON SEQUENCE document_seq IS 'Sequence for the sequence bound to the document modele';
|
||
COMMENT ON TABLE document_state IS 'State of the document';
|
||
COMMENT ON TABLE document_type IS 'Type of document : meeting, invoice,...';
|
||
COMMENT ON TABLE fiche IS 'Cards';
|
||
COMMENT ON TABLE fiche_def IS 'Cards definition';
|
||
COMMENT ON TABLE fiche_def_ref IS 'Family Cards definition';
|
||
COMMENT ON TABLE form IS 'Forms content';
|
||
COMMENT ON TABLE jnt_fic_att_value IS 'join between the card and the attribut definition';
|
||
COMMENT ON TABLE jnt_fic_attr IS 'join between the family card and the attribut definition';
|
||
COMMENT ON TABLE jrn IS 'Journal: content one line for a group of accountancy writing';
|
||
COMMENT ON TABLE jrn_action IS 'Possible action when we are in journal (menu)';
|
||
COMMENT ON TABLE jrn_def IS 'Definition of a journal, his properties';
|
||
COMMENT ON TABLE jrn_rapt IS 'Rapprochement between operation';
|
||
COMMENT ON TABLE jrn_type IS 'Type of journal (Sell, Buy, Financial...)';
|
||
COMMENT ON TABLE jrnx IS 'Journal: content one line for each accountancy writing';
|
||
COMMENT ON TABLE op_predef IS 'predefined operation';
|
||
COMMENT ON COLUMN op_predef.jrn_def_id IS 'jrn_id';
|
||
COMMENT ON COLUMN op_predef.od_name IS 'name of the operation';
|
||
COMMENT ON TABLE op_predef_detail IS 'contains the detail of predefined operations';
|
||
COMMENT ON TABLE operation_analytique IS 'History of the analytic account';
|
||
COMMENT ON TABLE parameter IS 'parameter of the company';
|
||
COMMENT ON TABLE parm_money IS 'Currency conversion';
|
||
COMMENT ON TABLE parm_periode IS 'Periode definition';
|
||
COMMENT ON TABLE plan_analytique IS 'Plan Analytique (max 5)';
|
||
COMMENT ON TABLE poste_analytique IS 'Poste Analytique';
|
||
COMMENT ON TABLE quant_sold IS 'Contains about invoice for customer';
|
||
COMMENT ON TABLE stock_goods IS 'About the goods';
|
||
COMMENT ON TABLE tmp_pcmn IS 'Plan comptable minimum normalis<69>';
|
||
COMMENT ON TABLE tva_rate IS 'Rate of vat';
|
||
COMMENT ON TABLE user_local_pref IS 'The user''s local parameter ';
|
||
COMMENT ON COLUMN user_local_pref.user_id IS 'user''s login ';
|
||
COMMENT ON COLUMN user_local_pref.parameter_type IS 'the type of parameter ';
|
||
COMMENT ON COLUMN user_local_pref.parameter_value IS 'the value of parameter ';
|
||
COMMENT ON VIEW vw_fiche_def IS 'all the attributs for card family';
|
||
COMMENT ON VIEW vw_fiche_min IS 'minimum attribut for reference card';
|