php artisan make:migration CreateCommentsTable
Created Migration: 2017_11_09_122738_CreateCommentsTable
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateCommentsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('comments', function (Blueprint $t) {
$t->increments('id');
$t->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('comments');
}
}
php artisan make:migration RemoveCommentsTable
Created Migration: 2017_11_09_123257_RemoveCommentsTable
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class RemoveCommentsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::drop('comments');
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::create('comments', function (Blueprint $t) {
$t->increments('id');
$t->timestamps();
});
}
}
php artisan make:migration CreateCommentsTable
[InvalidArgumentException]
A CreateCommentsTable migration already exists.
php artisan make:migration <ЗДЕСЬ>
как файл миграции с таким же названием может существовать? вы их вручную клепаете?
там же почти рандомный префикс в названиях классов, если через генератор
все миграции должны до начала откатываться и подниматься
добавлять миграцию
Думал как-то добавлять пути папки /vendor/* в игнор, но почти нигде это не реализовано.
для того что бы работать локально, в поезде, или при отсутствии интернета
$product->images = json_encode($paths);