Answers for "add new field migration laravel"

PHP
1

pip install urllib

pip install urllib3
Posted by: Guest on February-10-2021
6

add another field in existing migration laravel

php artisan make:migration add_paid_to_users_table --table=users
Posted by: Guest on April-30-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 "add new field migration laravel"

Browse Popular Code Answers by Language