# File lib/state_machine/integrations/sequel.rb, line 278
        def define_state_initializer
          # Hooks in to attribute initialization to set the states *prior* to
          # the attributes being set
          define_helper :instance, "# Initializes dynamic states\ndef initialize(*)\nsuper do |*args|\nself.class.state_machines.initialize_states(self, :static => false)\nchanged_columns.clear\nyield(*args) if block_given?\nend\nend\n\n# Initializes static states\ndef set(*)\nself.class.state_machines.initialize_states(self, :dynamic => false) if values.empty?\nsuper\nend\n", __FILE__, __LINE__ + 1
        end