refactor(Application): rename network_aliases to custom_network_aliases across the application for clarity and consistency
This commit is contained in:
@@ -9,14 +9,14 @@ return new class extends Migration
|
||||
public function up()
|
||||
{
|
||||
Schema::table('applications', function (Blueprint $table) {
|
||||
$table->text('network_aliases')->nullable();
|
||||
$table->text('custom_network_aliases')->nullable();
|
||||
});
|
||||
}
|
||||
|
||||
public function down()
|
||||
{
|
||||
Schema::table('applications', function (Blueprint $table) {
|
||||
$table->dropColumn('network_aliases');
|
||||
$table->dropColumn('custom_network_aliases');
|
||||
});
|
||||
}
|
||||
};
|
||||
|
Reference in New Issue
Block a user