Central Files: meta_tables
Central Files is management of personal information. Any information
that belongs to any person is managed in Central Files. Everything
relating to communication with any person that ever contacted the
organization is managed in such collection. The table
meta_tables
may help us in future to indicate if such table
need to be hidden or handled in special manner.
The table meta_fields
is necessary requirement for
Gedafe generic database frontend. We may have use of it in future.
As given and explained in the documentation of Gedafe
the Generic Database
Frontend there is need for the meta_fields
and
meta_tables
tables.
The Gedafe software will enable us to have additional web interface for Central Files personal information management system, though I will focus on management within the GNU Emacs computing and operating environment that includes text editor and programming language Emacs Lisp.
The table meta_tables
will have just 3 fields:
meta_tables_table - it will contain the table name.
meta_tables_attribute - it will contain the attribute related to the table
meta_tables_value - it will contain the value of the attribute
The SQL recipe to create the meta_tables
table is here
below.
--
-- Name: meta_tables; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE meta_tables (
NOT NULL PRIMARY KEY,
meta_tables_table NAME NOT NULL,
meta_tables_attribute TEXT
meta_tables_value TEXT
);
GRANT SELECT ON TABLE public.meta_tables TO PUBLIC;
Leave Your Comment or Contact GNU.Support
Contact GNU.Support now. There is a simple rule at GNU.Support: if we can help you, we do, whenever and wherever necessary, and it's the way we've been doing business since 2002, and the only way we know