increments('id'); $table->string('name', 50)->nullable(); $table->string('slug', 200)->nullable(); $table->integer('parent_id')->nullable(); $table->integer('contacts_id')->nullable(); $table->date('start_date')->nullable(); $table->string('duration', 20)->nullable(); $table->string('status', 40)->nullable(); $table->integer('assigned_to')->nullable(); $table->string('attendes', 30)->nullable(); $table->string('reminders', 30)->nullable(); $table->string('shedule_time', 20)->nullable(); $table->string('description', 100)->nullable(); $table->integer('user_id')->nullable(); $table->string('user_type', 50)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('meetings'); } }