Laravel create migration file in specific folder

后端 未结 3 1655
鱼传尺愫
鱼传尺愫 2021-01-04 01:18

I\'ve created Payment package for my laravel project

I want to make migration files inside migrations folder of my package. How can create it using artisan command?

3条回答
  •  隐瞒了意图╮
    2021-01-04 01:41

    Use this command on the root folder:

    create the only Migration file:

    php artisan make:migration create_products_table --create=products
    

    Create Migration, Model file:

    php artisan make:model Product -m
    

    For Create Migration,Model,Controller file:

    php artisan make:model Product -mcr
    

    If you want to do it manually then you may set --path as per your folder requirement.

    php artisan make:migration filename --path=/app/database/migrations/relations
    php artisan make:migration filename --path=/app/database/migrations/translations
    

    If you want to migrate then:

    php artisan migrate --path= /app/database/migrations/relations
    

提交回复
热议问题