method

has_default?

has_default?()
public

No documentation available.

# File activerecord/lib/active_record/connection_adapters/mysql_adapter.rb, line 56
      def has_default?
        return false if sql_type =~ /blob/i || type == :text #mysql forbids defaults on blob and text columns
        super
      end