+DROP TABLE IF EXISTS payment_bankaccounts;
CREATE TABLE payment_bankaccounts (
id integer PRIMARY KEY auto_increment,
asso_id integer NOT NULL,
INSERT INTO payment_bankaccounts VALUES (NULL,179,"30066106410001050600128","X-Sursaut H Levy-Lambert","used");
INSERT INTO payment_bankaccounts VALUES (NULL,223,"30066100410001126780124","X-Theatre","used");
+DROP TABLE IF EXISTS payment_reconcilations;
CREATE TABLE payment_reconcilations (
id INTEGER PRIMARY KEY auto_increment,
method_id INTEGER NOT NULL,
UPDATE payment_transactions SET amount=CONVERT(REPLACE(REPLACE(amount_tmp," EUR",""),",","."),DECIMAL(9,2));
ALTER TABLE payment_transactions ADD KEY method_id (method_id);
ALTER TABLE payment_transactions ADD KEY ref (ref);
-ALTER TABLE payment_transactions ADD UNIQUE KEY fullref (fullref);
+# ALTER TABLE payment_transactions ADD UNIQUE KEY fullref (fullref);
#fullref dupliqués :
#select t1.* from payment_transactions as t1 join payment_transactions as t2 using(fullref) group by(t1.id) having count(*)!=1 order by fullref;
ALTER TABLE payment_transactions DROP amount_tmp;
+DROP TABLE IF EXISTS payment_transfers;
CREATE TABLE payment_transfers (
id INTEGER PRIMARY KEY auto_increment,
recongroup_id INTEGER NOT NULL,
echo "OK"
}
+function create_db() {
+ echo "* create database "
+ mysql_exec_nodb "CREATE DATABASE IF NOT EXISTS $DATABASE;"
+ mysql_exec_nodb "GRANT ALTER, CREATE, CREATE TEMPORARY TABLES, DELETE, DROP, EXECUTE, INDEX, INSERT, LOCK TABLES, SELECT, UPDATE ON $DATABASE.* TO 'web'@'localhost';"
+ mysql_exec_nodb "FLUSH PRIVILEGES;"
+ echo "OK"
+}
+
+function copy_db() {
+ if [[ -n "$SOURCE_DATABASE" ]]; then
+ confirm "* copying database from $SOURCE_DATABASE to $DATABASE"
+ create_db
+ echo -n "* build database from dump "
+ ( mysqldump --add-drop-table -Q $SOURCE_DATABASE | $MYSQL $DATABASE ) \
+ || die "ERROR"
+ echo "OK"
+ fi
+}
+
function mysql_run_directory() {
for sql in $1/*.sql ; do
mysql_run $sql