<?php

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

class AddColumnVoiceTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::table('voices', function (Blueprint $table){
            $table->text('text7')->nullable();
            $table->text('text8')->nullable();
            $table->text('text9')->nullable();
            $table->text('text10')->nullable();
            $table->text('text11')->nullable();
            $table->text('text12')->nullable();
            $table->text('text13')->nullable();
            $table->text('text14')->nullable();
            $table->text('text15')->nullable();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::table('voices', function (Blueprint $table){
            $table->dropColumn('text7');
            $table->dropColumn('text8');
            $table->dropColumn('text9');
            $table->dropColumn('text10');
            $table->dropColumn('text11');
            $table->dropColumn('text12');
            $table->dropColumn('text13');
            $table->dropColumn('text14');
            $table->dropColumn('text15');
        });
    }
}
