Skip to content

Instantly share code, notes, and snippets.

@blogcacanid
Created June 16, 2020 00:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save blogcacanid/e55a1d83d6395a3e2fbd6cf69a75e466 to your computer and use it in GitHub Desktop.
Save blogcacanid/e55a1d83d6395a3e2fbd6cf69a75e466 to your computer and use it in GitHub Desktop.
XXXX_create_products_table.php Back End Product Lumen 7
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateProductsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('products', function (Blueprint $table) {
$table->increments('id');
$table->string('product_name');
$table->integer('product_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