add resource Documents Online
This commit is contained in:
parent
ff2deace3e
commit
00d64e149a
|
@ -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');
|
||||
}
|
||||
};
|
Loading…
Reference in New Issue