Home Backend Development PHP Tutorial Database migration of migrate in thinkphp5

Database migration of migrate in thinkphp5

Jun 07, 2018 pm 04:12 PM
migrate thinkphp5 tp5 Database migration

Here is an introduction to the tp5 migrate database migration tool. It is very simple and practical. Friends in need can take a look at the examples in this article

tp5 is very different from tp3.2

Migrate is one of them. Through migrate, programmers can create database modification rollback and other operations in the PHP code.

First download the migrate extension and execute the command line in the current project directory.

composer require topthink/think-migration
Copy after login

You can check whether migrate is successfully downloaded by using the php think command

Use migrate: create migrate file name (capital camel case method) to generate migrate under database The file

may fail to be created and prompts that there is no solution. Generally, the tp version obtained by composer is too low. Consider modifying the migrate version in the composer.json file to 1.* or ^1.0

and try again. Just composer update

Configure the database in database.php under application

The following is the content of one of the migrate files (after creation) A default method change(), delete it)

 use think\migration\Migrator;
 use think\migration\db\Column;
 
 class CreateUserTable extends Migrator
 {
   
   /**
   * 建立用户表
   */
   public function up(){
     $table = $this->table('user');
     $table->addColumn('username' , 'string' , ['limit' => 30])
        ->addColumn('passwork' , 'string' , ['limit' => 32])
        ->addColumn('email' , 'string' , ['limit' => 25])
        ->addColumn('lastlogin_ip' , 'string' , ['limit' => 15])
        ->addTimestamps('create_time' , 'lastlogin_time')
        ->addColumn('status' , 'integer' , ['limit' => 1 , 'default' => 1])
        ->setId('user_id')
        ->save();
   }
   
   /**
   * 提供回滚的删除用户表方法
   */
   public function down(){
     $this->dropTable('user');
   }
 }
Copy after login

For some of the above methods, I didn’t see the official documentation. What I saw online was Xiao Teng’s explanation

Using migrate :run will execute all the migrate up methods

You can roll back the last executed migrate file through migrate:rollback (with -t 0 parameter to roll back all)

You can use migrate:status Check the current migration execution situation

After executing the run method, the user table is successfully created

##It is very convenient

The above is the entire article Content, I hope it will be helpful to everyone’s learning. For more related content, please pay attention to the PHP Chinese website!

Related recommendations:

thinkPHP database addition, deletion, modification and query operations

The above is the detailed content of Database migration of migrate in thinkphp5. For more information, please follow other related articles on the PHP Chinese website!

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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What should I do if I get an error when deploying thinkphp5 in Pagoda? What should I do if I get an error when deploying thinkphp5 in Pagoda? Dec 19, 2022 am 11:04 AM

Solution to the error reported when deploying thinkphp5 in Pagoda: 1. Open the Pagoda server, install the php pathinfo extension and enable it; 2. Configure the ".access" file with the content "RewriteRule ^(.*)$ index.php?s=/$1 [QSA ,PT,L]”; 3. In website management, just enable thinkphp’s pseudo-static.

Database migration tips in Django framework Database migration tips in Django framework Jun 17, 2023 pm 01:10 PM

Django is a web development framework written in Python. It provides many convenient tools and modules to help developers quickly build websites and applications. One of the most important features is the database migration function, which can help us simply manage database schema changes. In this article, we will introduce some tips for using database migration in Django, including how to start a new database migration, how to detect database migration conflicts, how to view historical database migration records, etc.

Flask-Migrate: Migrate databases using Python Flask-Migrate: Migrate databases using Python Jun 17, 2023 am 10:04 AM

Flask-Migrate: Using Python to migrate databases With the continuous development of web development, the importance of databases has become more and more prominent. During the development process, we need to modify and migrate data. However, if you modify it directly on the database, it may bring unpredictable risks. At this time, Flask-Migrate came into being. In this article, we will focus on the use of Flask-Migrate and how to migrate databases through Python. Fl

What should I do if thinkphp5 post cannot get the value? What should I do if thinkphp5 post cannot get the value? Dec 06, 2022 am 09:29 AM

thinkphp5 post cannot get a value because TP5 uses the strpos function to find the app/json string in the content-type value of the Header. The solution is to set the content-type value of the Header to app/json.

What should I do if thinkphp5 url rewriting fails? What should I do if thinkphp5 url rewriting fails? Dec 12, 2022 am 09:31 AM

Solution to thinkphp5 url rewriting not working: 1. Check whether the mod_rewrite.so module is loaded in the httpd.conf configuration file; 2. Change None in AllowOverride None to All; 3. Modify the Apache configuration file .htaccess to "RewriteRule ^ (.*)$ index.php [L,E=PATH_INFO:$1]" and save it.

How to get the requested URL in thinkphp5 How to get the requested URL in thinkphp5 Dec 20, 2022 am 09:48 AM

Methods for thinkphp5 to obtain the requested URL: 1. Use the "$request = Request::instance();" method of the "\think\Request" class to obtain the current URL information; 2. Use the built-in helper function "$request-> url()" to obtain the complete URL address including the domain name.

Steps to implement database migrations (Migrations) using Zend framework Steps to implement database migrations (Migrations) using Zend framework Jul 28, 2023 pm 05:54 PM

Steps to implement database migrations (Migrations) using Zend framework Introduction: Database migration is an integral part of the software development process. Its function is to facilitate the team's modification and version control of the database structure during development. The Zend Framework provides a powerful set of database migration tools that can help us easily manage changes to the database structure. This article will introduce the steps of how to use the Zend framework to implement database migration, and attach corresponding code examples. Step 1: Install Zend Framework First

PHP and SQLite: How to do database migrations and upgrades PHP and SQLite: How to do database migrations and upgrades Jul 28, 2023 pm 08:10 PM

PHP and SQLite: How to perform database migration and upgrade Database migration and upgrade is a very common task when developing web applications. For developers using PHP and SQLite, this process may be more complicated. This article will introduce how to use PHP and SQLite for database migration and upgrade, and provide some code samples for reference. Create a SQLite database First, we need to create a SQLite database. Using SQLite database is very convenient, we

See all articles