How to create or drop a table when working with the Laravel framework?

Creating a table in a Laravel database

2023-10-28 04:46:32

To create a table, you must enter the line described below in the terminal. It is assumed that the developer has already opened his project in VSCode and is working in the terminal.

php artisan make:migration create_test1_table

If the command executes successfully, the user will see the following code.

INFO Migration [C:\OSPanel\domains\site1\database\migrations/

2023_10_27_122815_create_test1_table.php] created successfully.

At this point, you can make changes to Laravel's table system. To apply migration, enter the line below.

php artisan migrate

The following error message indicates that the PHP driver is not configured to work with databases.

could not find driver (Connection: mysql, SQL: select * from information_schema.tables where table_schema = laravel and table_name = migrations and table_type = 'BASE TABLE')

To resolve the issue, you need to check the php.ini file, which is usually located in the PHP directory for working with the server. The file must contain the entry described below.

extension=php_pdo_mysql.dll

or

extension=pdo_mysql

There should not be a semicolon before the above line. This syntax disables the command. In this case, you need to enable it. Usually the first option is enough to connect PHP to MySQL. If the command is executed successfully, the user will see the following message.

PS C:\OSPanel\domains\site1> php artisan migrate

INFO Preparing database.

Creating migration table ......................................... 37ms DONE

INFO Running migrations.

2019_12_14_000001_create_personal_access_tokens_table ............ 44ms DONE

2023_10_27_110025_create_users_teble ............................. 17ms DONE

2023_10_27_122815_create_test1_table .............................. 8ms DONE

PS C:\OSPanel\domains\site1>

If you resend the instruction, no changes will occur in the tables.

INFO Nothing to migrate.

A table can be deleted from the database using code.

php artisan migrate:rollback

The command line will report the success of the operation.

INFO Rolling back migrations.

2023_10_27_122815_create_test1_table .............................. 7ms DONE

2023_10_27_110025_create_users_teble .............................. 5ms DONE

2019_12_14_000001_create_personal_access_tokens_table ............. 8ms DONE

Repeating the migration command will return the tables to the database. However, the number of each table will be increased as the system takes into account each action.

Firewall open port Disable port blocking in the firewall program window___ Learn about open and closed ports What ports are used? Find out on Windows10 via command line___ Composer program installation Composer download – what is needed to run the program___ Viewport meta tag Viewport is a necessary tag to display the HTML page correctly___ Personnel leak Ukraine is losing 1 thousand IT specialists per month___ Indexing images for search engines Indexing images on a website can be used for promotion___ Freelancer's first order Freelancing for beginners - what do you need to know to get your first order?___ URL special characters How to use special characters when creating a website page URL___ HTML code Code - tag functions and features___ HTML pre Inserting computer code content through HTML tags and special characters___
Find out the port status How can I check if my firewall is still running after I turn it off? Opening ports using a terminal One line will display the port status in the terminal-4 _ Firewall open port Windous command line will help you open the port+0 _ Creating a table in a Laravel database Basic PowerShell Commands Every PHP Developer Should Know+1 _ Firewall check disabled Growth and decline in the number of millionaires in the world from 2021 to 2023+2 _ How many millionaires in the world in 2023 Differences in the thinking of millionaires and billionaires - basic qualities
Learn about open and closed ports What ports are used? Find out on Windows10 via command line___ Firewall open port Disable port blocking in the firewall program window___
Pokemon Go profit Java for the Pokemon Go application and profit from the game___ Merging Laravel Vite Sass Tailwind Laravel 10 + Vite connecting to Sass Tailwind___ Java Salary Average earnings of a Java programmer in Germany – expectations and reality___ Git for Beginners Simple Basic Git Commands for Beginners___ Programmer salary Spain Barcelona Programmer's income in 2023 in Barcelona - overview of Spain___ Shutterstock earnings A realistic view of Shutterstock income for young creators___ How can a programmer obtain German citizenship? German citizenship – new rules simplify the procedure for a programmer___ Changing the interface language in the free version of the Cakewalk music editor___