Sha256: 572694c380133942eff0d7356eaadd63d2f2b4ac5cd1b109c1076671010f611f
Contents?: true
Size: 324 Bytes
Versions: 18
Compression:
Stored size: 324 Bytes
Contents
class CreateProjects < ActiveRecord::Migration[4.2] def change create_table :projects do |t| t.string :name 20.times do t.string "description_#{rand(1_000_000)}" end 20.times do t.integer "amount_#{rand(1_000_000)}" end t.timestamps null: false end end end
Version data entries
18 entries across 18 versions & 2 rubygems