нуля, создаются только столбцы id и created_at, updated_at
Schema::create('products', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->integer('category_id');
$table->string('type');
$table->string('brand')->nullable();
$table->string('series')->nullable();
$table->string('model')->nullable();
$table->string('size')->nullable();
$table->string('price')->nullable();
$table->timestamps();
});
может тамблица у тебя уже создана?
Обсуждают сегодня