ยฉ 2026 Hedgehog Software, LLC
attributes do uuid_primary_key :id attribute :title, :string do allow_nil? false default "" description "Row title for display purposes" end ... end
create :create do accept [:title, :data, :table_id, :position]
title
create :create do argument :title, :string, allow_nil?: true, default: "" accept [:data, :table_id, :position] change set_attribute(:title, arg(:title)) # or even this # change set_attribute(:title, "")
constraints: [allow_empty?: true]