id(); $table->string('word',1024)->index(); $table->string('word_en',1024)->index(); $table->integer('count'); $table->integer('flag')->default(0); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('vocabularies'); } }