Skip to content
Snippets Groups Projects
Commit e8a2dfb5 authored by Gerd Schachtschneider's avatar Gerd Schachtschneider
Browse files

fix mysqldump with trigger

parent f359e95a
No related branches found
No related tags found
No related merge requests found
...@@ -13,7 +13,7 @@ else ...@@ -13,7 +13,7 @@ else
if test -z $ok; then ok="n"; fi if test -z $ok; then ok="n"; fi
if test "$ok" = "j"; then if test "$ok" = "j"; then
echo "create tar from xataface xataface-2.1.2/ master/ template/ favicon.ico index.html info.php" echo "create tar from xataface xataface-2.1.2/ master/ template/ favicon.ico index.html info.php"
tar --exclude-vcs -czf db_export/mpidb_mpg_common.tar.gz xataface xataface-2.1.2/ master/ template/ favicon.ico index.html info.php tar --exclude-vcs -czf db_export/mpidb_mpg_common.tar.gz xataface xataface-2.1.2/ xataface-2.1.3/ master/ template/ favicon.ico index.html info.php
fi fi
execute="mpg_*" execute="mpg_*"
...@@ -32,5 +32,5 @@ for project in $execute; do ...@@ -32,5 +32,5 @@ for project in $execute; do
echo "create tar from plain project ${project}" echo "create tar from plain project ${project}"
tar --exclude-vcs -czf db_export/mpidb_${project}.tar.gz ${project}/ tar --exclude-vcs -czf db_export/mpidb_${project}.tar.gz ${project}/
echo "create tar from project ${project} with common files" echo "create tar from project ${project} with common files"
tar --exclude-vcs -czf db_export/mpidb_${project}_full.tar.gz xataface xataface-2.1.2/ master/ template/ favicon.ico index.html info.php LICENSE.txt ${project}/ tar --exclude-vcs -czf db_export/mpidb_${project}_full.tar.gz xataface xataface-2.1.2/ xataface-2.1.3/ master/ template/ favicon.ico index.html info.php LICENSE.txt ${project}/
done done
No preview for this file type
No preview for this file type
...@@ -58,7 +58,6 @@ ...@@ -58,7 +58,6 @@
<ul id="table_selection_tabs"> <ul id="table_selection_tabs">
<li class="nav tab_06"><a href="/it_inv" title="Tabelle Inventar"> Inventar </a></li> <li class="nav tab_06"><a href="/it_inv" title="Tabelle Inventar"> Inventar </a></li>
<li class="nav tab_06"><a href="/it_licman" title="Tabelle Lizenzmanager"> Lizenzmanager </a></li> <li class="nav tab_06"><a href="/it_licman" title="Tabelle Lizenzmanager"> Lizenzmanager </a></li>
<li class="nav tab_06"><a href="/it_user/index.php?-table=main_benutzer&expired==0" title="Tabelle Benutzer"> Benutzer </a></li>
<li class="nav tab_06"><a href="/user" title="Tabelle Benutzer"> Fiona </a></li> <li class="nav tab_06"><a href="/user" title="Tabelle Benutzer"> Fiona </a></li>
<li class="nav tab_06"><a href="/it_lab" title="Tabelle LaborUser"> Labor User </a></li> <li class="nav tab_06"><a href="/it_lab" title="Tabelle LaborUser"> Labor User </a></li>
<li class="nav tab_06"><a href="/it_tel" title="Tabelle Telefone"> Telefon </a></li> <li class="nav tab_06"><a href="/it_tel" title="Tabelle Telefone"> Telefon </a></li>
......
...@@ -46,7 +46,7 @@ BEGIN ...@@ -46,7 +46,7 @@ BEGIN
`login` varchar(20) COLLATE utf8_unicode_ci NOT NULL, `login` varchar(20) COLLATE utf8_unicode_ci NOT NULL,
`role` varchar(20) COLLATE utf8_unicode_ci NOT NULL, `role` varchar(20) COLLATE utf8_unicode_ci NOT NULL,
`email` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL, `email` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL,
`bearbeiter` varchar(20) COLLATE utf8_unicode_ci NOT NULL, `bearbeiter` varchar(20) COLLATE utf8_unicode_ci NULL,
`zeitstempel` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP `zeitstempel` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- unique, pri -- unique, pri
......
{assign var=table value=main_telefon} {assign var=table value=main_telefon}
<div class="Dataface_collapsible_sidebar-closed" style="display: block;"> <div class="Dataface_collapsible_sidebar-closed" style="display: block;">
<table class="Dataface_QuickForm-table-wrapper xf-form-group"> <table width="100%" class="Dataface_QuickForm-table-wrapper xf-form-group">
<tbody> <tbody>
<tr> <tr>
......
...@@ -20,4 +20,4 @@ ...@@ -20,4 +20,4 @@
if test -z $ok; then ok="n"; fi if test -z $ok; then ok="n"; fi
if test "$ok" != "y"; then exit 0; fi if test "$ok" != "y"; then exit 0; fi
/usr/bin/mysqldump -p --events --skip-extended-insert --skip-comments --databases $db > $PWD/$db.sql /usr/bin/mysqldump -p --events --routines --skip-extended-insert --skip-comments --databases $db > $PWD/$db.sql
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment