2016-05-11 8 views
0

を移行し実行することはできませんが、今、私は実行する必要があります。は、PHPの職人が、私は適切にすべてをインストールするコマンド

php artisan migrate 

をしかし、私はそのコマンドを実行したときに私が手: enter image description here

は、ここでの問題は何ですか?

私laravel.logファイルは言う:

#8 /var/www/html/laravel3/vendor/symfony/console/Application.php(841): Illuminate\Console\Command->run(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput)) 
#9 /var/www/html/laravel3/vendor/symfony/console/Application.php(189): Symfony\Component\Console\Application->doRunCommand(Object(Illuminate\Database\Console\Migrations\MigrateCommand), Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput)) 
#10 /var/www/html/laravel3/vendor/symfony/console/Application.php(120): Symfony\Component\Console\Application->doRun(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput)) 
#11 /var/www/html/laravel3/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(107): Symfony\Component\Console\Application->run(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput)) 
#12 /var/www/html/laravel3/artisan(35): Illuminate\Foundation\Console\Kernel->handle(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput)) 

UPDATE:

<?php 

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

class CreateUsersTable extends Migration 
{ 
    /** 
    * Run the migrations. 
    * 
    * @return void 
    */ 
    public function up() 
    { 
     Schema::create('users', function (Blueprint $table) { 
      $table->increments('id'); 
      $table->integer('admin'); 
      $table->string('name'); 
      $table->string('phone'); 
      $table->string('hotel'); 
      $table->string('address'); 
      $table->string('url'); 
      $table->string('email')->unique(); 
      $table->string('password', 60); 
      $table->rememberToken(); 
      $table->timestamps(); 
     }); 
    } 

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

この私のユーザーの移行ファイルこれは、最も可能性の高い構文エラーです

答えて

0

です。おそらくcreate usersテーブルの移行にあります。ファイルに構文エラーがないかチェックしてください。

+0

いいえエラーはありません –

+0

マイグレーションファイルの内容を投稿できますか? – scrubmx

+0

私はwuestionへの更新として投稿ファイルを投稿します –

関連する問題