increments('id'); $table->integer('client_id')->nullable(); $table->string('title', 50)->nullable(); $table->text('text')->nullable(); $table->tinyInteger('paid')->nullable(); $table->integer('price_list_id')->nullable(); $table->date('date_start')->nullable(); $table->date('date_end')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('job_offerts'); } }