Current File : /home/masbinta/www/database/migrations/2021_02_09_050446_add_about_info_to_sectiontitles_table.php |
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AddAboutInfoToSectiontitlesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('sectiontitles', function (Blueprint $table) {
$table->text('about_image')->nullable()->after('about_intro_video');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('sectiontitles', function (Blueprint $table) {
$table->dropColumn('about_image');
});
}
}