diff options
| -rw-r--r-- | activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb b/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb index c7aff63228..efa427fa88 100644 --- a/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb +++ b/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb @@ -92,7 +92,9 @@ module ActiveRecord        # Returns an array of Column objects for the table specified by +table_name+.        # See the concrete implementation for details on the expected parameter values. -      def columns(table_name) end +      def columns(table_name) +        raise NotImplementedError, "#columns is not implemented" +      end        # Checks to see if a column exists in a given table.        # | 
