timestamp laravel migration code example
Example 1: mysql timestamp in laravel migration
$table->timestamp('created_at')->default(DB::raw('CURRENT_TIMESTAMP'));
Example 2: laravel make migration
php artisan make:migration CreateUsersTable
Example 3: laravel migration integer
$table->bigInteger('votes');