class CreateVariants < ActiveRecord::Migration[5.1] def change create_table :variants do |t| t.string :name t.integer :enginecap t.integer :year t.string :fueltype t.string :gearshift t.integer :fuelcap t.integer :seating t.float :mileage t.float :price t.references :brand, foreign_key: true t.timestamps end end end