Skip to content

Commit

Permalink
feat: revert code style
Browse files Browse the repository at this point in the history
  • Loading branch information
lvdigitalaaank committed Feb 3, 2025
1 parent 5a75b5b commit a620e2b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion config/translations.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,6 @@
|
*/
'exclude_files' => [
// 'validation.php', // Exclude default validation for example.
//'validation.php', // Exclude default validation for example.
],
];
2 changes: 1 addition & 1 deletion database/migrations/create_phrases_table.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public function up(): void
{
Schema::create('ltu_phrases', function (Blueprint $table) {
$table->id();
$table->char('uuid', 36);
$table->char('uuid', 36);;
$table->foreignIdFor(Translation::class)->constrained('ltu_translations')->cascadeOnDelete();
$table->foreignIdFor(TranslationFile::class)->constrained('ltu_translation_files')->cascadeOnDelete();
$table->foreignIdFor(Phrase::class)->nullable()->constrained('ltu_phrases')->cascadeOnDelete();
Expand Down
4 changes: 2 additions & 2 deletions tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ protected function setUp(): void
protected function refreshTestDatabase(): void
{
if (! RefreshDatabaseState::$migrated) {
// $this->artisan('vendor:publish', ['--tag' => 'mixpost-migrations', '--force' => true])->run();
// $this->artisan('migrate:fresh', $this->migrateFreshUsing());
//$this->artisan('vendor:publish', ['--tag' => 'mixpost-migrations', '--force' => true])->run();
//$this->artisan('migrate:fresh', $this->migrateFreshUsing());

$this->app[Kernel::class]->setArtisan(null);

Expand Down

0 comments on commit a620e2b

Please sign in to comment.