increments('id'); $table->text('Name'); $table->integer('ItemId'); $table->decimal('Price', 20, 2); $table->string('Time'); }); } } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('Prices'); } }