1php artisan make:migration add_votes_to_users_table --table=users
2
3php artisan make:migration create_users_table --create=users
1golang migrate create
2
3migrate create -ext sql -dir db/migration -seq init_schema
4eg :migrate create -ext sql events
1/**
2 * The database connection that should be used by the migration.
3 *
4 * @var string
5 */
6protected $connection = 'pgsql';
7
8/**
9 * Run the migrations.
10 *
11 * @return void
12 */
13public function up()
14{
15 //
16}