id(); $table->foreignId('category_id')->index()->nullable(); $table->foreignId('organizer_id')->index()->nullable(); $table->string('name'); $table->mediumText('description')->nullable(); $table->string('picture')->nullable(); $table->string('url'); $table->string('tweetid'); $table->date('fin'); $table->string('nbretweet'); $table->string('nblike'); $table->string('nbreply'); $table->boolean('participated')->default(false); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('contests'); } };