Answers for "add new column to database laravel"

PHP
4

urllib python

#Used to make requests
import urllib.request

x = urllib.request.urlopen('https://www.google.com/')
print(x.read())
Posted by: Guest on June-26-2020
25

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

Code answers related to "add new column to database laravel"

Browse Popular Code Answers by Language