Answers for "create migration file"

PHP
1

make migration with model

php artisan make:model -m <Model name>
Posted by: Guest on January-15-2021
1

make migration file in laravel

php artisan make:migration create_flights_table
Posted by: Guest on February-16-2021
-1

how database migration work

class CreateProducts < ActiveRecord::Migration[5.0]
  def change
    create_table :products do |t|
      t.string :name
      t.text :description
 
      t.timestamps
    end
  end
end
Posted by: Guest on October-13-2020

Code answers related to "create migration file"

Browse Popular Code Answers by Language