<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

class UpdateSomeTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::dropIfExists('producers');
        Schema::dropIfExists('areas');
        Schema::dropIfExists('cares');
        Schema::dropIfExists('comment_details');
        Schema::dropIfExists('comments');
        Schema::dropIfExists('consultation_details');
        Schema::dropIfExists('consultations');
        Schema::dropIfExists('counselings');
        Schema::dropIfExists('csv_file_configs');
        Schema::dropIfExists('csv_file_details');
        Schema::dropIfExists('csv_files');
        Schema::dropIfExists('feature_details');
        Schema::dropIfExists('features');
        Schema::dropIfExists('fortune_metas');
        Schema::dropIfExists('fortune_method_details');
        Schema::dropIfExists('fortune_methods');
        Schema::dropIfExists('fortune_reviews');
        Schema::dropIfExists('fortune_schedules');
        Schema::dropIfExists('fortune_teller_files');
        Schema::dropIfExists('fortune_tellers');
        Schema::dropIfExists('link_histories');
        Schema::dropIfExists('link_history_details');
        Schema::dropIfExists('links');
        Schema::dropIfExists('quotes');
        Schema::dropIfExists('ranks');
        Schema::dropIfExists('ref_names');
        Schema::dropIfExists('schedules');
        Schema::dropIfExists('shop_csv_logs');
        Schema::dropIfExists('shop_infos');
        Schema::dropIfExists('shop_metas');
        Schema::dropIfExists('shop_reviews');
        Schema::dropIfExists('shop_sliders');
        Schema::dropIfExists('shops');
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
    }
}
