id(); $table->date('date'); $table->string('symbol'); $table->float('split_amount', 12, 4); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('splits'); } }