From eb5c48b58d72d04abb093fceb32db842ec7ab5fb Mon Sep 17 00:00:00 2001 From: Sam Light Date: Sat, 18 Jan 2025 20:17:47 +0000 Subject: Setup testing --- .../2025_01_18_201725_create_products_table.php | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 workbench/database/migrations/2025_01_18_201725_create_products_table.php (limited to 'workbench/database/migrations') diff --git a/workbench/database/migrations/2025_01_18_201725_create_products_table.php b/workbench/database/migrations/2025_01_18_201725_create_products_table.php new file mode 100644 index 0000000..7c23f58 --- /dev/null +++ b/workbench/database/migrations/2025_01_18_201725_create_products_table.php @@ -0,0 +1,27 @@ +id(); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('products'); + } +}; -- cgit v1.2.3