increments('id'); $table->timestamps(); $table->string('value'); $table->integer('sentence_id')->unsigned()->nullable(); $table->foreign('sentence_id')->references('id')->on('sentences'); //$table->integer('postag_id')->unsigned()->nullable(); //$table->foreign('postag_id')->references('id')->on('postags'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('words'); } }