increments('id'); $table->string('name')->nullable(); $table->string('url')->nullable(); $table->float('amount', 5, 2); $table->string('payment_method')->nullable(); $table->timestamp('timestamp'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('donations'); } }