/
home
/
u694682534
/
domains
/
blackbooks.me
/
public_html
/
almaher2
/
database
/
migrations
/
Upload File
HOME
<?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::table('transactions', function (Blueprint $table) { $table->integer('res_table_id')->unsigned()->nullable()->after('location_id')->comment('fields to restaurant module'); $table->integer('res_waiter_id')->unsigned()->nullable()->after('res_table_id')->comment('fields to restaurant module'); }); } /** * Reverse the migrations. * * @return void */ public function down() { // } };