Код: Выделить всё
public function up()
{
Schema::create('users', function($table){
$table->increments('id');
$table->string('email', 255);
$table->string('password', 64);
$table->boolean('verified');
$table->string('token', 255);
$table->timestamps();
DB::table('users')->insert(
array(
'email' => `name@domain.example`,
'verified' => true
)
);
});
}
Код: Выделить всё
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'vantage.users' doesn't exist
Кто -нибудь знает, как?
Подробнее здесь: https://stackoverflow.com/questions/127 ... ation-file
Мобильная версия