From ebfddf35b9d4ebcdb5be37df77b83b2e1e16df97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20L=C3=BCtke?= Date: Thu, 6 Oct 2005 14:10:45 +0000 Subject: Add rename_table to mysql, sqlite and postgres adapters for use in migrations git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2477 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- .../connection_adapters/abstract/schema_statements.rb | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'activerecord/lib/active_record/connection_adapters/abstract') 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 861480d980..366192909e 100644 --- a/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb +++ b/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb @@ -90,6 +90,13 @@ module ActiveRecord create_sql << ") #{options[:options]}" execute create_sql end + + # Renames a table. + # ===== Example + # rename_table('octopuses', 'octopi') + def rename_table(name, new_name) + raise NotImplementedError, "rename_table is not implemented" + end # Drops a table from the database. def drop_table(name) @@ -109,7 +116,7 @@ module ActiveRecord # remove_column(:suppliers, :qualification) def remove_column(table_name, column_name) execute "ALTER TABLE #{table_name} DROP #{column_name}" - end + end # Changes the column's definition according to the new options. # See TableDefinition#column for details of the options you can use. -- cgit v1.2.3