mysql - Migration doesn't execute when I push my Laravel app on Pagodabox.io? -


when push laravel app on pagodabox, seams cancel migrations, keeps saying "command cancelled! success" , when try see live app, getting error message:

sqlstate[42s02]: base table or view not found: 1146 table 'gopagoda.posts' doesn't exist (sql: select * `posts`).  

i did set db credentials production (for mysql db).

an app works fine on local server.

also, may relevant, have free account. not sure if migrations available free accounts!?

<= :::::::::::::::::::::: end build output ::::::::::::::::::::::::::: """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""  +> uploading libs storage warehouse +> uploading build storage warehouse +> provisioning production servers (may take while)  web1 :: before deploy hook 1 :: /////////////////////////////// $ php artisan -n migrate --seed ************************************** *     application in production!     * **************************************  command cancelled! [✓] success 

my boxfile:

#######  php boxfile  #######  # boxfile yaml config file houses configuration # related app’s deployment , infrastructure. allows # custom-configure app's environment specific # project's needs.  # documentation links # boxfile : pagodabox.io/docs/boxfile_overview # php settings in boxfile : pagodabox.io/docs/boxfile_php_settings # php on pagoda box : pagodabox.io/docs/php # build & deploy hooks : pagodabox.io/docs/build_deploy_hooks  global:   env:     - laravel_env:production  build:   type: php   stability: production   lib_dir: 'vendor'  web1:   type: php   name: laravel   httpd_document_root: public   php_extensions:     - mcrypt     - pdo_mysql   network_dirs:     storage1:       - app/storage/cache       - app/storage/logs       - app/storage/meta       - app/storage/sessions       - app/storage/views   before_deploy:     - 'php artisan -n migrate --seed'   after_deploy:     - 'php artisan -n cache:clear'     - 'rm -f app/storage/views/*'  database1:   name: gopagoda   type: **mysql**  storage1:   type: nfs   name: laravel-writables 

with interactivity disabled, artisan automatically aborts migrations run in "production" environment. can force migration run adding --force flag migrate command.

web1:         before_deploy:     - 'php artisan -n migrate --seed --force' 

Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -