Sha256: 1ef8cfdbb29d1a5236f4eb826dc7be0ae2020dbc95fa31b6df71d8d75daf038a
Contents?: true
Size: 268 Bytes
Versions: 6
Compression:
Stored size: 268 Bytes
Contents
# frozen_string_literal: true class CreateUsers < ( Rails.version < '5' ? ActiveRecord::Migration : ActiveRecord::Migration[4.2] ) def change create_table :users do |t| t.string :name t.string :email t.string :password end end end
Version data entries
6 entries across 6 versions & 1 rubygems