aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/arel/table.rb11
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/arel/table.rb b/lib/arel/table.rb
index aa61c36a31..189fb8eb94 100644
--- a/lib/arel/table.rb
+++ b/lib/arel/table.rb
@@ -100,17 +100,6 @@ primary_key (#{caller.first}) is deprecated and will be removed in Arel 4.0.0
from(self).having expr
end
- def columns
- if $VERBOSE
- warn <<-eowarn
-(#{caller.first}) Arel::Table#columns is deprecated and will be removed in
-Arel 4.0.0 with no replacement. PEW PEW PEW!!!
- eowarn
- end
- @columns ||=
- attributes_for @engine.connection.columns(@name, "#{@name} Columns")
- end
-
def [] name
::Arel::Attribute.new self, name
end