Skip to content

Commit

Permalink
fix: updated collections schema and also typo correction
Browse files Browse the repository at this point in the history
  • Loading branch information
CS76 committed Aug 28, 2024
1 parent 0eab9a4 commit 1716888
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,15 @@ public function up(): void
$table->foreignId('owner_id')->nullable();
$table->foreignId('license_id')->nullable();
$table->timestamp('release_date')->nullable();
$table->boolean('promote')->default(0);
$table->integer('sort_order')->default(0)->nullable();
$table->integer('successful_entries')->default(0)->nullable();
$table->integer('failed_entries')->default(0)->nullable();
$table->integer('molecules_count')->default(0)->nullable();
$table->integer('citations_count')->default(0)->nullable();
$table->integer('organisms_count')->default(0)->nullable();
$table->integer('geo_count')->default(0)->nullable();
$table->integer('total_entries')->default(0)->nullable();
$table->timestamps();
});
}
Expand Down
2 changes: 1 addition & 1 deletion resources/views/mail/report/submitted.blade.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<x-mail::message>

Hello {{ $user->name }},
Thank you for submitting your report. It is peding review with our Curators. You will reveive further updates via email.
Thank you for submitting your report. It is pending review with our Curators. You will reveive further updates via email.

### Report Details:
- **Report Title:** {{ $event->report->title }}
Expand Down

0 comments on commit 1716888

Please sign in to comment.