Sequel.migration do change do create_table(:pinboard) do primary_key :id foreign_key :entity_id, :entities String :json, text: true, null: false DateTime :created_at, null: false DateTime :modified_at, null: false end end end