01 2020
This commit is contained in:
parent
bed91c4f4a
commit
c8948338bb
122 changed files with 7911 additions and 1639 deletions
|
|
@ -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();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue