Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
19 lines
342 B
PHP
19 lines
342 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
class RemoveChangelogsTable extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::dropIfExists('changelogs');
|
|
Schema::dropIfExists('changelog_user');
|
|
}
|
|
}
|