dbfdg id(); $table->string('title'); $table->boolean('is_complete')->default(0); $table->integer('user_id'); $table->timestamps(); } ); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('user_to_dos'); } }