Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

laravel add column to table

Schema::table('users', function (Blueprint $table) {
	$table->dateTime('verify_date')->nullable()->after("password_updated_at");
});
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #laravel #add #column #table
ADD COMMENT
Topic
Name
6+8 =