# (c) Copyright IBM Corp. 2021 # (c) Copyright Instana Inc. 2017 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[4.2] def change create_table :blocks do |t| t.string :name t.string :color t.timestamps end end end