# File lib/aws/dynamo_db/table.rb, line 275
      def range_key= description
        raise "attempted to set a range key without configuring a hash key first" unless
          schema_loaded?

        static_attributes[:range_key] =
          PrimaryKeyElement.from_description(description)

      end