Skip to content

Instantly share code, notes, and snippets.

@ualmtorres
Created September 24, 2022 07:12
Show Gist options
  • Save ualmtorres/d440a496d3562d0e92a34727cb78c228 to your computer and use it in GitHub Desktop.
Save ualmtorres/d440a496d3562d0e92a34727cb78c228 to your computer and use it in GitHub Desktop.
Laravel products migration
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('products', function (Blueprint $table) {
$table->id();
$table->string('barcode');
$table->string('product');
$table->string('description');
$table->integer('stock');
$table->float('price');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('products');
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment