add resource Documents Online

This commit is contained in:
aslan 2024-01-19 19:15:51 +03:00
parent ff2deace3e
commit 00d64e149a
1 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ return new class extends Migration
*/
public function up(): void
{
Schema::create('documents_online', function (Blueprint $table) {
Schema::create('online_documents', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('url');
@ -26,6 +26,6 @@ return new class extends Migration
*/
public function down(): void
{
Schema::dropIfExists('documents_online');
Schema::dropIfExists('online_documents');
}
};