EscolaLMS/Consultations

View on GitHub

Showing 1,011 of 1,011 total issues

Call to method timestamps from undeclared class \Illuminate\Database\Schema\Blueprint
Open

            $table->timestamps();

Call to method id from undeclared class \Illuminate\Database\Schema\Blueprint
Open

            $table->id();

Call to method foreign from undeclared class \Illuminate\Database\Schema\Blueprint
Open

            $table->foreign('user_id')->on('users')->references('id');

Call to method foreign from undeclared class \Illuminate\Database\Schema\Blueprint
Open

            $table->foreign('author_id')->references('id')->on('users')->onDelete('SET NULL');

Call to method create from undeclared class \Illuminate\Support\Facades\Schema
Open

        Schema::create('consultation_proposed_terms', function (Blueprint $table) {

Class extends undeclared class \Illuminate\Database\Migrations\Migration
Open

class AddColumnsDateAndStatusToOrders extends Migration

Parameter $table has undeclared type \Illuminate\Database\Schema\Blueprint
Open

        Schema::table('consultations', function (Blueprint $table) {

Parameter $table has undeclared type \Illuminate\Database\Schema\Blueprint
Open

            Schema::table('orders', function (Blueprint $table) {

Call to method dropColumn from undeclared class \Illuminate\Database\Schema\Blueprint
Open

            $table->dropColumn('image_path');

Class extends undeclared class \Illuminate\Database\Migrations\Migration
Open

class AddMissingsColumnToConsultationsTable extends Migration

Call to method foreign from undeclared class \Illuminate\Database\Schema\Blueprint
Open

            $table->foreign('consultation_id')->on('consultations')->references('id')->cascadeOnDelete();

Call to method table from undeclared class \Illuminate\Support\Facades\Schema
Open

        Schema::table('consultations', function (Blueprint $table) {

Parameter $table has undeclared type \Illuminate\Database\Schema\Blueprint
Open

            Schema::table('orders', function (Blueprint $table) {

Call to method foreign from undeclared class \Illuminate\Database\Schema\Blueprint
Open

            $table->foreign('category_id')->on('categories')->references('id')->cascadeOnDelete();

Parameter $table has undeclared type \Illuminate\Database\Schema\Blueprint
Open

        Schema::create('consultations_participants', function (Blueprint $table) {

Call to method create from undeclared class \Illuminate\Support\Facades\Schema
Open

        Schema::create('consultation_user', function (Blueprint $table) {

Call to method unique from undeclared class \Illuminate\Database\Schema\Blueprint
Open

            $table->unique(['user_id', 'consultation_id'], 'consultation_user_unique');

Call to method string from undeclared class \Illuminate\Database\Schema\Blueprint
Open

            $table->string('executed_status')->nullable();

Class extends undeclared class \Illuminate\Database\Migrations\Migration
Open

class CreateLogotypeColumnInConsultationsTable extends Migration

Call to method dropColumn from undeclared class \Illuminate\Database\Schema\Blueprint
Open

            $table->dropColumn(['executed_at', 'executed_status']);
Severity
Category
Status
Source
Language