/**
  * Run the migrations.
  *
  * @return void
  */
 public function up()
 {
     SChema::create('words', function (Blueprint $table) {
         $table->increments('id');
         // id
         $table->string('words', 200)->nullable();
         // 単語
         $table->string('words_yomi', 200)->nullable();
         // 単語読み
         $table->timestamps();
         // 登録日と更新日
     });
 }
 /**
  * Reverse the migrations.
  */
 public function down()
 {
     SChema::drop('servers');
 }
 /**
  * Reverse the migrations.
  *
  * @return void
  */
 public function down()
 {
     SChema::drop("dondathang");
 }
 /**
  * Reverse the migrations.
  *
  * @return void
  */
 public function down()
 {
     SChema::drop('phieunhap');
 }
 /**
  * Reverse the migrations.
  *
  * @return void
  */
 public function down()
 {
     //
     SChema::drop('shipping');
 }