diff --git a/database/migrations/2022_05_16_115324_add_open_wallet_at_mobile_login_to_networks.php b/database/migrations/2022_05_16_115324_add_open_wallet_at_mobile_login_to_networks.php new file mode 100644 index 0000000..fba70f7 --- /dev/null +++ b/database/migrations/2022_05_16_115324_add_open_wallet_at_mobile_login_to_networks.php @@ -0,0 +1,32 @@ +boolean('open_wallet_at_mobile_login')->default(0)->after('name'); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('networks', function (Blueprint $table) { + $table->dropColumn('open_wallet_at_mobile_login'); + }); + } +}