Merge branch 'next' into separate-success-and-failure-notifications
This commit is contained in:
@@ -3,7 +3,6 @@
|
|||||||
/public/build
|
/public/build
|
||||||
/public/hot
|
/public/hot
|
||||||
/public/storage
|
/public/storage
|
||||||
/storage/*.key
|
|
||||||
/vendor
|
/vendor
|
||||||
.env
|
.env
|
||||||
.env.backup
|
.env.backup
|
||||||
@@ -25,3 +24,15 @@ yarn-error.log
|
|||||||
.ignition.json
|
.ignition.json
|
||||||
.env.dusk.local
|
.env.dusk.local
|
||||||
docker/coolify-realtime/node_modules
|
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
|
public function up(): void
|
||||||
{
|
{
|
||||||
Schema::table('applications', function (Blueprint $table) {
|
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