Answers for "command to migrate on adding new column"

PHP
1

git how to see changes made by a commit

git show <commit sha1> # Notice that the default option is HEAD.
Posted by: Guest on June-15-2020
2

how to commit changes in git command

git commit -a
Posted by: Guest on April-14-2020
3

add a new column to existing table in a migration

// for Laravel 5+
php artisan make:migration add_email_to_users_table --table=users

public function up()
{
    Schema::table('users', function($table) {
        $table->integer('email');
    });
}

public function down()
{
    Schema::table('users', function($table) {
        $table->dropColumn('email');
    });
}

php artisan migrate
Posted by: Guest on January-01-2021

Code answers related to "command to migrate on adding new column"

Browse Popular Code Answers by Language