diff --git a/database/migrations/2023_01_18_122534_add_byod_to_assets.php b/database/migrations/2023_01_18_122534_add_byod_to_assets.php new file mode 100644 index 000000000..63c4b7062 --- /dev/null +++ b/database/migrations/2023_01_18_122534_add_byod_to_assets.php @@ -0,0 +1,34 @@ +boolean('byod')->nullable()->default(0); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('assets', function (Blueprint $table) { + if (Schema::hasColumn('assets', 'byod')) { + $table->dropColumn('byod'); + } + }); + } +}