dbfdg bigIncrements('id'); $table->integer('branch_id'); $table->longText('department_id'); $table->longText('employee_id'); $table->string('title'); $table->date('start_date'); $table->date('end_date'); $table->string('color'); $table->text('description')->nullable(); $table->integer('created_by'); $table->timestamps(); } ); } public function down() { Schema::dropIfExists('events'); } }