Sha256: d3be761a882dd7fa34a7403668b9b0841a55ac7bdc7ba8643446e1d09d556d1a
Contents?: true
Size: 332 Bytes
Versions: 17
Compression:
Stored size: 332 Bytes
Contents
class Block < ActiveRecord::Base def do_work(*args) block = Block.first block.name = "Charlie" block.color = "Black" block.save end end class CreateBlocks < ActiveRecord::Migration[6.0] def change create_table :blocks do |t| t.string :name t.string :color t.timestamps end end end
Version data entries
17 entries across 17 versions & 1 rubygems