dbfdg bigIncrements('id'); $table->string('title')->nullable(); $table->date('start_date'); $table->date('end_date'); $table->integer('branch_id')->default(0); $table->string('department_id')->default(0); $table->string('employee_id')->default(0); $table->string('description')->nullable(); $table->integer('created_by'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('announcements'); } }