try this:
class CreatePages < ActiveRecord::Migration[5.0]
def change
create_table :pages do |t|
t.string :name
t.text :description
t.text :address
t.text :contact
t.string :profile_image
t.string :cover_image
t.string :look_book
t.integer :seller_id
t.timestamps
end
end
end
solved Error undefined methode ‘interger’ when make migrate [closed]