Answers for "how to make add column in migration"

PHP
0

git add git commit

git add .
git commit -m "intial commit"
git push
npm run deploy
Posted by: Guest on August-05-2021
9

git commit

git add index.html css/styles.css
git add .
git commit -m "Change titles and styling on homepage"
Posted by: Guest on August-28-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
0

add column to migration laravel

php artisan make:migration add_profile_to_users
Posted by: Guest on June-08-2020
1

add column to migration laravel

class AddProfileToUsers extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::table('users', function (Blueprint $table) {
            $table->string('profile')->nullable();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::table('shop_users', function (Blueprint $table) {
            $table->dropColumn(['profile']);
        });
    }
}
Posted by: Guest on June-08-2020

Code answers related to "how to make add column in migration"

Browse Popular Code Answers by Language