2017-02-08 11 views
0

私はlaravelの初心者です。 私はlaravalがデータベースに自分のテーブルを作成しない理由を尋ねます。Laravelはpostgresqlデータベースにテーブルを作成しません。

PostgreSQLの実行で、その後

newFootball = 2017_02_08_130207_create_articles_table:

<?php 

use Illuminate\Support\Facades\Schema; 
use Illuminate\Database\Schema\Blueprint; 
use Illuminate\Database\Migrations\Migration; 

class CreateMySongsTable extends Migration 
{ 
    /** 
    * Run the migrations. 
    * 
    * @return void 
    */ 
    public function up() 
    { 
     Schema::create('songs', function (Blueprint $table) { 
      $table->increments('id'); 
      $table->string('title'); 
      $table->string('artist'); 
      $table->timestamps(); 
     }); 
    } 

    /** 
    * Reverse the migrations. 
    * 
    * @return void 
    */ 
    public function down() 
    { 
     Schema::dropIfExists('songs'); 
    } 
} 

まず 1.run PHP職人の移行 移行した:これは私のマイグレーション・ファイルは

APP_ENV=local 
APP_KEY=base64:9FLWfylvrtxjXdunJujBDq37Q4QtKcoiPdmeJbgbLSg= 
APP_DEBUG=true 
APP_LOG_LEVEL=debug 
APP_URL=http://localhost 

DB_CONNECTION=pgsql 
DB_HOST=localhost 
DB_PORT=5432 
DB_DATABASE=laravel5 
DB_USERNAME=postgres 
DB_PASSWORD=1111 

BROADCAST_DRIVER=log 
CACHE_DRIVER=file 
SESSION_DRIVER=file 
QUEUE_DRIVER=sync 

REDIS_HOST=127.0.0.1 
REDIS_PASSWORD=null 
REDIS_PORT=6379 

MAIL_DRIVER=smtp 
MAIL_HOST=mailtrap.io 
MAIL_PORT=2525 
MAIL_USERNAME=null 
MAIL_PASSWORD=null 
MAIL_ENCRYPTION=null 

PUSHER_APP_ID= 
PUSHER_APP_KEY= 
PUSHER_APP_SECRET= 

です:これは私の.envファイルです#\ dt リレーションが見つかりませんでした。

誰か助けてください。あなたの忍耐力に感謝します。

答えて

0

最後に解決策が見つかりました。次のコマンドを実行するために必要な.envファイルの変更が原因です。

php artisan config:cache 

すべての作業に最適です。ありがとうございました。

関連する問題