increments('id'); $table->tinyInteger('status')->nullable(); $table->integer('assigned_id')->nullable(); $table->date('start_date')->nullable(); $table->date('end_date')->nullable(); $table->string('name', 100)->nullable(); $table->string('type', 100)->nullable(); $table->integer('Budget')->nullable(); $table->integer('team_id')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('bixo_campaigns'); } }