2016_03_05_102159_create_sentence_table.php 474 B

12345678910111213141516171819202122
  1. <?php
  2. use Illuminate\Database\Migrations\Migration;
  3. use Illuminate\Database\Schema\Blueprint;
  4. class CreateSentenceTable extends Migration {
  5. public function up()
  6. {
  7. Schema::create('sentences', function(Blueprint $table) {
  8. $table->increments('id');
  9. $table->timestamps();
  10. $table->integer('corpus_id')->unsigned()->nullable();
  11. $table->foreign('corpus_id')->references('id')->on('corpora');
  12. });
  13. }
  14. public function down()
  15. {
  16. Schema::drop('sentences');
  17. }
  18. }