Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mpidb
common
Commits
e8a2dfb5
Commit
e8a2dfb5
authored
Aug 27, 2018
by
Gerd Schachtschneider
Browse files
fix mysqldump with trigger
parent
f359e95a
Changes
7
Hide whitespace changes
Inline
Side-by-side
db_export/make_tar.sh
View file @
e8a2dfb5
...
...
@@ -13,7 +13,7 @@ else
if
test
-z
$ok
;
then
ok
=
"n"
;
fi
if
test
"
$ok
"
=
"j"
;
then
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
execute
=
"mpg_*"
...
...
@@ -32,5 +32,5 @@ for project in $execute; do
echo
"create tar from plain project
${
project
}
"
tar
--exclude-vcs
-czf
db_export/mpidb_
${
project
}
.tar.gz
${
project
}
/
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
db_export/mpidb_mpg_licman.tar.gz
View file @
e8a2dfb5
No preview for this file type
db_export/mpidb_mpg_licman_full.tar.gz
View file @
e8a2dfb5
No preview for this file type
index.html
View file @
e8a2dfb5
...
...
@@ -58,7 +58,6 @@
<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_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=
"/it_lab"
title=
"Tabelle LaborUser"
>
Labor User
</a></li>
<li
class=
"nav tab_06"
><a
href=
"/it_tel"
title=
"Tabelle Telefone"
>
Telefon
</a></li>
...
...
master/tables/sys_user/sys_user.sql
View file @
e8a2dfb5
...
...
@@ -46,7 +46,7 @@ BEGIN
`login`
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
,
`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
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
utf8
COLLATE
=
utf8_unicode_ci
;
-- unique, pri
...
...
master/templates/user_telefon.html
View file @
e8a2dfb5
{assign var=table value=main_telefon}
<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>
<tr>
...
...
template/install/exportDatabase.sh
View file @
e8a2dfb5
...
...
@@ -20,4 +20,4 @@
if
test
-z
$ok
;
then
ok
=
"n"
;
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
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment