<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateBelisTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('belis', function (Blueprint $table) { $table->increments('id'); $table->string('username'); $table->string('id_menu'); $table->string('nama_menu'); $table->string('harga'); $table->string('jumlah_pesanan'); $table->string('total_harga'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('belis'); } }