I can't make it work to use migrations on my laravel installation (Windows 8.1 host). I make 2 migrations via:
php artisan migrate:make create_language_table
The file was created under app/database/migrations. I use the Schema Creator to create a new table (database connection already working by the way). When i try to run the migrations with:
php artisan migrate
Laravel says "Nothing to migrate." Beside this there's always the question if I really want to run this command (Application in production). The path showing up for the migrations is
C:\MAMP\htdocs\example\app/database/migrations/*_*.php
Could this be a path problem on Windows (mixing slashes with backslashes)? Thank in advance for all responses!