[Devel] [GIT] OpenBioMaps GIT repository, branch master updated: supervisor - a new admin interface for servers

git at vocs.unideb.hu git at vocs.unideb.hu
Sun Nov 25 16:43:06 CET 2018


    The project "OpenBioMaps GIT repository":

    The branch, master has been updated
       via  7c6b70af7a5eec26d7874cb2f1a91e35e92857f7 (commit)
      from  53bdb4b0843884087d646f931a0836f70e762b2d (commit)


- Log -----------------------------------------------------------------
commit 7c6b70af7a5eec26d7874cb2f1a91e35e92857f7
Author: Bán Miklós <banm at vocs.unideb.hu>
Date:   Sun Nov 25 16:39:45 2018 +0100

supervisor - a new admin interface for servers

Run the following sql commands in the biomaps db:

This will drop the current db_updates table!!!!

DROP TABLE public.db_updates;
CREATE TABLE db_updates (
update_id integer NOT NULL,
status boolean DEFAULT false NOT NULL,
sqlid integer,
datum timestamp without time zone DEFAULT now() NOT NULL,
revision text NOT NULL,
database character varying(24),
sqlcmd text,
project character varying(32)
);
CREATE SEQUENCE db_updates_update_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE ONLY db_updates ALTER COLUMN update_id SET DEFAULT nextval('db_updates_update_id_seq'::regclass);
ALTER TABLE ONLY db_updates
ADD CONSTRAINT update_id_pkey PRIMARY KEY (update_id);

-----------------------------------------------------------------------

Summary of changes:
 .htaccess                                   |   6 +
 admin.php                                   |   2 -
 common_pg_funcs.php => common_functions.php |   2 -
 gekko_index.php                             |  10 +-
 index.php                                   |  10 +-
 languages/en.php                            |   3 +-
 prepare_vars.php                            |   8 -
 local_vars.php.inc => server_vars.php.inc   |   6 +-
 supervisor.md                               |  23 ++
 supervisor.php                              | 446 ++++++++++++++++++++++++++++
 10 files changed, 494 insertions(+), 22 deletions(-)
 delete mode 100644 admin.php
 rename common_pg_funcs.php => common_functions.php (98%)
 rename local_vars.php.inc => server_vars.php.inc (53%)
 create mode 100644 supervisor.md
 create mode 100644 supervisor.php

-- 
OpenBioMaps GIT repository


More information about the Devel mailing list