From 96e38da875537f61c0e86fcf453c4a45112b4356 Mon Sep 17 00:00:00 2001 From: snipe Date: Tue, 11 Feb 2025 00:34:50 +0000 Subject: [PATCH] Created migration Signed-off-by: snipe --- ...25_02_10_230155_add_notes_to_locations.php | 60 +++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 database/migrations/2025_02_10_230155_add_notes_to_locations.php diff --git a/database/migrations/2025_02_10_230155_add_notes_to_locations.php b/database/migrations/2025_02_10_230155_add_notes_to_locations.php new file mode 100644 index 0000000000..bbffc50305 --- /dev/null +++ b/database/migrations/2025_02_10_230155_add_notes_to_locations.php @@ -0,0 +1,60 @@ +text('notes')->nullable()->default(null); + }); + + Schema::table('companies', function (Blueprint $table) { + $table->text('notes')->nullable()->default(null); + }); + + Schema::table('categories', function (Blueprint $table) { + $table->text('notes')->nullable()->default(null); + }); + + Schema::table('manufacturers', function (Blueprint $table) { + $table->text('notes')->nullable()->default(null); + }); + + Schema::table('permission_groups', function (Blueprint $table) { + $table->text('notes')->nullable()->default(null); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('locations', function (Blueprint $table) { + $table->dropColumn('notes'); + }); + + Schema::table('companies', function (Blueprint $table) { + $table->dropColumn('notes'); + }); + + Schema::table('categories', function (Blueprint $table) { + $table->dropColumn('notes'); + }); + + Schema::table('manufacturers', function (Blueprint $table) { + $table->dropColumn('notes'); + }); + + Schema::table('permission_groups', function (Blueprint $table) { + $table->dropColumn('notes'); + }); + } +};