Answers for "add column data eloquent laravel"

PHP
24

add new column in laravel migration

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
0

laravel add column to existing table

public function up()
{
    Schema::table('users', function($table) {
        $table->integer('paid');
    });
}
Posted by: Guest on August-19-2020

Code answers related to "add column data eloquent laravel"

Browse Popular Code Answers by Language