Answers for "migration to create a gender in the database table"

0

migration to create a gender in the database table

Schema::table('users', function(Blueprint $table) {
 $table->string('gender')->after('age');
 });
Posted by: Guest on March-09-2022

Code answers related to "migration to create a gender in the database table"

Browse Popular Code Answers by Language