dbfdg bigIncrements('id'); $table->string('name'); $table->string('type'); $table->string('from')->nullable(); $table->string('to')->nullable(); $table->decimal('amount', 15, 2)->default(0.00); $table->integer('is_display')->default(1); $table->integer('created_by')->default(0); $table->timestamps(); } ); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('goals'); } }