turkmentv/database/migrations/2019_05_21_113314_create_pa...

38 lines
799 B
PHP

<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreatePageslidersTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('pagesliders', function (Blueprint $table) {
$table->increments('id');
$table->string('alt')->nullable();
$table->longText('img_url')->nullable();
$table->unsignedInteger('menu_id')->nullable();
$table->foreign('menu_id')->references('id')->on('menus');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('pagesliders');
}
}