Answers for "add new field to table laravel"

PHP
2

how to check linux os

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

find operating system linux

#Get details about linux distro
cat /etc/os-release
Posted by: Guest on October-25-2020
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 to table laravel"

Browse Popular Code Answers by Language