diff --git a/database/migrations/2017_06_18_104531_create_sites_table.php b/database/migrations/2017_06_18_104531_create_sites_table.php deleted file mode 100644 index fd7b382..0000000 --- a/database/migrations/2017_06_18_104531_create_sites_table.php +++ /dev/null @@ -1,45 +0,0 @@ -increments('id'); - $table->timestamps(); - $table->string('url', 191); - $table->string('name', 191); - $table->string('devurl', 191)->nullable(); - $table->text('aboutus', 65535)->nullable(); - $table->text('address')->nullable(); - $table->string('description', 191)->nullable(); - $table->string('email', 191); - $table->string('phone', 191)->nullable(); - $table->string('fax', 191)->nullable(); - $table->string('logo', 191)->nullable(); - $table->string('favicon', 191)->nullable(); - $table->string('theme', 191); - }); - } - - - /** - * Reverse the migrations. - * - * @return void - */ - public function down() - { - Schema::drop('sites'); - } - -}