Answers for "add column to table laravel"

PHP
2

how to check linux os

cat /etc/os-release
or
hostnamectl
Posted by: Guest on March-10-2021
2

cat /etc/os-release

cat /etc/os-release
Posted by: Guest on August-20-2020
1

how to find distro name

cat /etc/os-release
lsb_release -a
hostnamectl
Type the following command to find Linux kernel version:
uname -r
Posted by: Guest on August-06-2020
24

laravel migration add column to existing table

php artisan make:migration add_paid_to_users_table --table=users
  
public function up()
{
    Schema::table('users', function($table) {
        $table->integer('paid');
    });
}

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

php artisan migrate
Posted by: Guest on September-03-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
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
2

add column in laravel migration cmnd

php artisan make:migration add_paid_to_users_table --table=users
Posted by: Guest on July-20-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 "add column to table laravel"

Browse Popular Code Answers by Language