increments('id'); $table->tinyInteger('employee_id'); $table->text('notice_title'); $table->string('expire_date',255); $table->longText('description'); $table->string('attached',255)->nullable(); $table->tinyInteger('added_by')->nullable(); $table->tinyInteger('updated_by')->nullable(); $table->tinyInteger('status')->nullable(); $table->tinyInteger('approved_by')->nullable(); $table->softDeletes(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('notice_boards'); } }