char('id', 6); $table->string('question'); $table->enum('type', ['cookies', 'codes']); $table->boolean('multiple_answers_allowed'); $table->timestamp('created_at'); $table->timestamp('closes_at')->nullable(); $table->string('admin_password')->nullable(); $table->primary('id'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('polls'); } }