This is what I am trying to do
if (!Schema::hasColumn('account_settings', 'minimum_onsite_length')) {
Schema::table('account_settings', function (Blueprint $table) {
$table->unsignedInteger('minimum_onsite_length')
->default(180)
->nullable()
->comment('This is comments')
;
});
}
But comments are not showing in migration is there any thing I am missing here?
I have also looked to this question but it is not working here