refactor(Application): rename network_aliases to custom_network_aliases across the application for clarity and consistency

This commit is contained in:
Andras Bacsai
2025-04-09 08:42:50 +02:00
parent fcf597fb16
commit 68bd945b09
5 changed files with 13 additions and 14 deletions

View File

@@ -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');
});
}
};