Skip to content

Instantly share code, notes, and snippets.

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/86ce559a1292b041ca6cc5c732338075 to your computer and use it in GitHub Desktop.
Save blogcacanid/86ce559a1292b041ca6cc5c732338075 to your computer and use it in GitHub Desktop.
2020_05_12_094558_create_products_table.php Back End Product Laravel 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