D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
medica-plus.online
/
database
/
migrations
/
Filename :
2021_06_30_212619_add_col_to_contact.php
back
Copy
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class AddColToContact extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('contacts', function (Blueprint $table) { $table->longText('reply')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('contacts', function (Blueprint $table) { // }); } }