You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- mysql -u root -e "create database telegrambot_migrations; use telegrambot_migrations; source structure.sql;"
45
+
- git checkout HEAD -- structure.sql
46
+
- mysql -u root -e "create database telegrambot; use telegrambot; source structure.sql;"
43
47
44
48
script:
49
+
- for SCHEMA_UPDATE_FILE in $(ls utils/db-schema-update); do mysql -u root -e "use telegrambot_migrations; source utils/db-schema-update/${SCHEMA_UPDATE_FILE};"; done;
45
50
- composer check-code
46
51
- if [ "$TRAVIS_PHP_VERSION" == "7.3" ]; then composer test-cov; else composer test; fi
0 commit comments