Answers for "how to add columns in tabel in laralve"

PHP
2

laravel add column to table

Schema::table('users', function (Blueprint $table) {
	$table->dateTime('verify_date')->nullable()->after("password_updated_at");
});
Posted by: Guest on April-01-2020

Browse Popular Code Answers by Language