id(); $table->unsignedBigInteger('project_id')->nullable(false); $table->unsignedTinyInteger('type')->nullable(false); $table->unsignedTinyInteger('status')->nullable(false); $table->integer('amount')->nullable(false); $table->text('description')->nullable(true); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('payments'); } };