for example I have the student table (name, age);
Then I create a migration to add the genre (M / F)
Schema::table('estudantes', function (Blueprint $table) {
$table->string('genero')->nullable();
});
But instead of using nullable (), I wanted to know if it's possible to create this column with all values as M (male), for example.
Is this possible?