diff options
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb | 6 |
1 files changed, 6 insertions, 0 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 4653904105..16266b4c16 100644 --- a/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb +++ b/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb @@ -23,6 +23,12 @@ module ActiveRecord table_name[0...table_alias_length].tr('.', '_') end + # Returns an array of table names. + # + def tables(name = nil) + raise NotImplementedError, "tables is not implemented" + end + # Checks to see if the table +table_name+ exists on the database. # # table_exists?(:developers) |