Kdyby/Doctrine orm:schema-tool:update –dump-sql do souboru
Upozornění: Tohle vlákno je hodně staré a informace nemusí být platné pro současné Nette.
- Jiří Nápravník
- Člen | 710
To je spise veci operacniho systemu ne?
Ve Windows treba takhle:
php www/index.php o:s:u --dump-sql > test.txt
Btw neni lepsi v tomhle pripade pouzit DoctrineMigrations?
- Jan Tvrdík
- Nette guru | 2595
V Nextras Migrations 3.0.x by mělo fungovat
TARGET=./migrations/structures/$(date +%F-%H%M%S).sql
php ./www/index.php orm:schema-tool:update --dump-sql > "$TARGET"
php ./www/index.php migrations:continue
V Nextras Migrations 3.1.x-dev by mělo fungovat navíc
TARGET=$(php ./www/index.php migrations:create structures generated)
php ./www/index.php orm:schema-tool:update --dump-sql > "$TARGET"
php ./www/index.php migrations:continue