protected $attributes = [ 'your_field_name' => 'default value' ];
You can use change() method: Schema::table('users', function ($table) { $table->integer('active')->default(0)->change(); });