From 2b0ce8853efb0fc662fdf04a4d74cd238acf5ce3 Mon Sep 17 00:00:00 2001 From: ARCANEDEV Date: Fri, 3 Mar 2017 12:08:20 +0000 Subject: [PATCH] Cleaning the migrations --- .../2015_00_00_000001_create_seo_table.php | 57 ------------------- 1 file changed, 57 deletions(-) delete mode 100644 database/migrations/2015_00_00_000001_create_seo_table.php diff --git a/database/migrations/2015_00_00_000001_create_seo_table.php b/database/migrations/2015_00_00_000001_create_seo_table.php deleted file mode 100644 index 51930db..0000000 --- a/database/migrations/2015_00_00_000001_create_seo_table.php +++ /dev/null @@ -1,57 +0,0 @@ - - */ -class CreateSeoTable extends Migration -{ - /* ------------------------------------------------------------------------------------------------ - | Properties - | ------------------------------------------------------------------------------------------------ - */ - /** - * The table name. - * - * @var string - */ - protected $table = 'seo'; - - /* ------------------------------------------------------------------------------------------------ - | Constructor - | ------------------------------------------------------------------------------------------------ - */ - /** - * CreateSeoTable constructor. - */ - public function __construct() - { - $this->setConnection(config('laravel-seo.database.connection', null)); - $this->setPrefix(config('laravel-seo.database.prefix', null)); - } - - /* ------------------------------------------------------------------------------------------------ - | Main Functions - | ------------------------------------------------------------------------------------------------ - */ - /** - * {@inheritdoc} - */ - public function up() - { - $this->createSchema(function(Blueprint $table) { - $table->increments('id'); - $table->morphs('seoable'); - $table->string('title'); - $table->string('description')->nullable(); - $table->string('keywords')->nullable(); - $table->text('metas')->nullable(); - $table->boolean('noindex')->default(false); - $table->timestamps(); - }); - } -}