class CreateUsers < ActiveRecord::Migration[5.1] def change create_table :users do |t| t.string :name t.string :last_name t.string :address t.string :email t.timestamps end end end