bigIncrements('id'); $table->string('external_id'); $table->unsignedBigInteger('team_id')->index()->nullable(); $table->foreignIdFor(\VentureDrake\LaravelCrm\Models\Field::class); $table->string('value')->nullable(); $table->string('label')->nullable(); $table->bigInteger('order')->nullable(); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists(config('laravel-crm.db_table_prefix').'field_options'); } }