diff --git a/database/migrations/2022_08_10_141328_add_notes_denorm_to_consumables_users.php b/database/migrations/2022_08_10_141328_add_notes_denorm_to_consumables_users.php new file mode 100644 index 000000000..a3c82cda8 --- /dev/null +++ b/database/migrations/2022_08_10_141328_add_notes_denorm_to_consumables_users.php @@ -0,0 +1,44 @@ +text('note')->nullable()->default(null); + }); + + Schema::table('components_assets', function (Blueprint $table) { + $table->text('note')->nullable()->default(null); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('consumables_users', function (Blueprint $table) { + if (Schema::hasColumn('consumables_users', 'note')) { + $table->dropColumn('note'); + } + }); + + Schema::table('components_assets', function (Blueprint $table) { + if (Schema::hasColumn('components_assets', 'note')) { + $table->dropColumn('note'); + } + }); + } +}