id(); $table->string('name'); $table->text('description')->nullable(); $table->dateTime('begin'); $table->dateTime('end'); $table->text('filters'); $table->text('requires'); $table->tinyInteger('status')->default(0); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('exams'); } }