Merge branch 'next' into separate-success-and-failure-notifications
This commit is contained in:
@@ -3,7 +3,6 @@
|
||||
/public/build
|
||||
/public/hot
|
||||
/public/storage
|
||||
/storage/*.key
|
||||
/vendor
|
||||
.env
|
||||
.env.backup
|
||||
@@ -25,3 +24,15 @@ yarn-error.log
|
||||
.ignition.json
|
||||
.env.dusk.local
|
||||
docker/coolify-realtime/node_modules
|
||||
|
||||
/storage/*.key
|
||||
/storage/app/backups
|
||||
/storage/app/ssh/keys
|
||||
/storage/app/ssh/mux
|
||||
/storage/app/tmp
|
||||
/storage/app/debugbar
|
||||
/storage/logs
|
||||
/storage/pail
|
||||
|
||||
|
||||
|
||||
|
@@ -12,7 +12,7 @@ return new class extends Migration
|
||||
public function up(): void
|
||||
{
|
||||
Schema::table('applications', function (Blueprint $table) {
|
||||
$table->string('redirect')->enum('www', 'non-www', 'both')->default('both')->after('domain');
|
||||
$table->enum('redirect', ['www', 'non-www', 'both'])->default('both')->after('domain');
|
||||
});
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user