This commit is contained in:
Kevin Adametz 2020-02-14 10:18:20 +01:00
parent bed91c4f4a
commit c8948338bb
122 changed files with 7911 additions and 1639 deletions

View file

@ -31,7 +31,7 @@ class CreateLeadTable extends Migration
$table->tinyInteger('is_closed')->nullable()->default(0);
$table->bigInteger('initialcontacttype_id')->nullable();
$table->bigInteger('searchengine_id')->nullable();
$table->string('searchengine_keywords', 80)->nullable();
$table->string('searchengine_keywords', 255)->nullable();
$table->bigInteger('status_id');
$table->date('next_due_date')->nullable();
$table->bigInteger('website_id')->nullable();
@ -40,8 +40,8 @@ class CreateLeadTable extends Migration
$table->dateTime('updated_at');
$table->decimal('price', 10, 2)->nullable();
$table->bigInteger('pax')->nullable();
$table->string('participant_name', 80)->nullable();
$table->string('participant_firstname', 80)->nullable();
$table->string('participant_name', 255)->nullable();
$table->string('participant_firstname', 255)->nullable();
$table->date('participant_birthdate')->nullable();
$table->bigInteger('participant_salutation_id')->nullable();