<?php

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

class AddColumnArticleTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::table('articles', function (Blueprint $table){
            $table->text('sheet_point')->nullable();
            $table->text('sheet_copy_2')->nullable();
            $table->text('memo_business_2')->nullable();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::table('articles', function (Blueprint $table){
            $table->dropColumn('sheet_point');
            $table->dropColumn('sheet_copy_2');
            $table->dropColumn('memo_business_2');
        });
    }
}
