Vous pouvez commenter/noter en utilisant le compte
anonymous (mot de passe:
anonymous)
You can comment/rate using the
anonymous account (password:
anonymous).
Snippets taggés : "db4"
db4.sh
#!/bin/bash
SYMFONY=`dirname $0`"/symfony"
SEP="==========================================================================="
echo "Rebuilding full database from DB4 schema and fixtures"
echo $SEP
echo "Converting DB4 schema for propel..."
$SYMFONY propel:db4-to-propel frontend --env=cli --debug=1 --file_dir=/doc/database --file=snippets_db4.xml --output_dir=/config --output=snippets_schema --package=lib.model.snippets
echo $SEP
echo "Rebuilding all tables & ORM classes..."
$SYMFONY propel:build-all-load frontend
echo $SEP
echo "Clearing the cache..."
$SYMFONY cc
echo $SEP
cd ..
echo "JOB's DONE ! ;)"