Създаване на миграцията с помощта на командата модели laravel

Примерен код

7
0

php един майстор прави миграцията

php artisan make:migration create_users_table
3
0

laravel създава модел и прехвърляне на

# If you would like to generate a database migration when you 
# generate the model, you may use the --migration or -m option:

php artisan make:model Flight --migration
php artisan make:model Flight -m
2
0

създаване на миграция laravel

php artisan make:migration create_users_table
1
0

създаване на нова миграция с помощта на терминала в ларавеле

php artisan make:migration add_votes_to_users_table --table=users

php artisan make:migration create_users_table --create=users
0
0

създаване на фабрика за миграция контролер модел laravel в един отбор

# to make only Model Class
php artisan make:model Customer

# to make resource controller
php artisan make:controller CustomersController --resource

# make controller for already existing Model Class (binded to model)
php artisan make:controller CustomersController --model=Customer

# to make  model, migration and controller and factory all in one command
php artisan make:model Modelname -crmf
0
0

как да направим миграция в laravel

php artisan make:migration create_users_table --create=users

php artisan make:migration add_votes_to_users_table --table=users

Подобни страници

Подобни страници с примери

На други езици

Тази страница на други езици

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Íslensk
..................................................................................................................