Home > Backend Development > PHP Tutorial > After migrating the laravel database, I want to modify the data table field information

After migrating the laravel database, I want to modify the data table field information

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2023-03-02 11:08:01
Original
2754 people have browsed it

After executing

php artisan migrate in laravel, data is also inserted into the database
But now I want to modify the target structure. For example, I want to add a default value of 0 to the title field. If withdrawn, the data will be gone. How can I ensure that the database data is still there? Now you can modify the data table

ps (I tried to create a migration if I added a field, but it didn’t work when I modified the field information)

Reply content:

After executing

php artisan migrate

in laravel, data is also inserted into the databaseBut now I want to modify the target structure. For example, I want to add a default value of 0 to the
title field. If withdrawn, the data will be gone. How can I ensure that the database data is still there? Now you can modify the data table

ps (I tried to create a migration if I added a field, but it didn’t work when I modified the field information)

<code>Schema::table('users', function ($table) { $table->string('title')->default('1')->change(); });</code>
Copy after login
https://laravel-china.org/doc...

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
Composer cannot install laravel
From 1970-01-01 08:00:00
0
0
0
Laravel Space/laravel-backup cannot be installed
From 1970-01-01 08:00:00
0
0
0
Laravel 5.1 Login laravel comes with it No more
From 1970-01-01 08:00:00
0
0
0
Why thinkphp has better performance than laravel?
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template