Flowdock
method

to_sql

Importance_0
v3.0.0 - Show latest stable - 0 notes - Class: ActiveRecord::ConnectionAdapters::ColumnDefinition
to_sql() public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb, line 275
      def to_sql
        column_sql = "#{base.quote_column_name(name)} #{sql_type}"
        column_options = {}
        column_options[:null] = null unless null.nil?
        column_options[:default] = default unless default.nil?
        add_column_options!(column_sql, column_options) unless type.to_sym == :primary_key
        column_sql
      end
Register or log in to add new notes.