public function up()
{
Schema::table('users', function (Blueprint $table) {
$table->string('company')
->after('email_verified_at')
->nullable();
});
}
public function down()
{
Schema::table('users', function (Blueprint $table) {
$table->dropColumn('company');
});
}
Schreibe einen Kommentar