Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
29 lines
709 B
PHP
29 lines
709 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
class RemoveUnusuedCounters extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::table('contacts', function (Blueprint $table) {
|
|
$table->dropColumn(
|
|
'number_of_notes',
|
|
'number_of_activities',
|
|
'number_of_gifts_ideas',
|
|
'number_of_gifts_received',
|
|
'number_of_gifts_offered',
|
|
'number_of_tasks_in_progress',
|
|
'number_of_tasks_completed'
|
|
);
|
|
});
|
|
}
|
|
}
|