Current File : /home/itiffy/www/database/migrations/2018_01_05_124534_create_home_table.php |
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Eloquent\Model;
class CreateHomeTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Model::unguard();
Schema::create('home',function(Blueprint $table){
$table->increments("id");
$table->text("banner1");
$table->text("banner2");
$table->text("banner3");
$table->text("section1");
$table->text("section2");
$table->text("section3");
$table->text("section4");
$table->text("section6");
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('home');
}
}