increments('id'); $table->integer('company_id')->nullable(); $table->date('start_date')->nullable(); $table->date('end_date')->nullable(); $table->integer('year')->nullable(); $table->tinyInteger('is_closed')->nullable(); $table->integer('user_id')->nullable(); $table->string('user_type', 50)->nullable(); $table->text('marking', 200)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('litecms_company_years'); } }