how to add new column my table in laravel using migrat code example
Example: add new column in existing table in laravel migration
public function up()
{
Schema::table('users', function($table) {
$table->integer('paid');
});
}
public function up()
{
Schema::table('users', function($table) {
$table->integer('paid');
});
}