diff --git a/app/Concerns/V7Configuration.php b/app/Concerns/V7Configuration.php new file mode 100644 index 0000000..caea31f --- /dev/null +++ b/app/Concerns/V7Configuration.php @@ -0,0 +1,8 @@ +id(); + $table->date('data_source_date'); + $table->string('engine_model'); + $table->string('file_name'); + $table->string('company'); + $table->json('costs'); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('llp_costs'); + } +}; diff --git a/tests/Feature/LlpCostsTableTest.php b/tests/Feature/LlpCostsTableTest.php new file mode 100644 index 0000000..b737a43 --- /dev/null +++ b/tests/Feature/LlpCostsTableTest.php @@ -0,0 +1,21 @@ +toBeTrue(); +});