Skip to content

Commit 0443923

Browse files
committed
FIX: Testing Migrations.
1 parent b4fe674 commit 0443923

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
/vendor
2+
/database/migrations/*.php
23
.github

database/migrations/2024_03_29_052317_create_settings_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public function up(): void
1919
$table->string('favicon')->nullable();
2020
$table->string('organization_name')->nullable();
2121
$table->string('google_console_code')->nullable();
22-
$table->string('google_analytic_code')->nullable();
22+
$table->text('google_analytic_code')->nullable();
2323
$table->string('google_adsense_code')->nullable();
2424
$table->json('quick_links')->nullable();
2525
$table->timestamps();

database/migrations/create_blog_tables.php.stub

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ return new class () extends Migration {
110110
$table->string('favicon')->nullable();
111111
$table->string('organization_name')->nullable();
112112
$table->tinyText('google_console_code')->nullable();
113-
$table->tinyText('google_analytic_code')->nullable();
113+
$table->text('google_analytic_code')->nullable();
114114
$table->tinyText('google_adsense_code')->nullable();
115115
$table->json('quick_links')->nullable();
116116
$table->timestamps();

src/FilamentBlogServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public function configurePackage(Package $package): void
5151

5252
});
5353
});
54-
$this->loadTestingMigration();
54+
// $this->loadTestingMigration();
5555
}
5656

5757
public function register()

0 commit comments

Comments
 (0)