Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I added a table that I thought I was going to need, but now no longer plan on using it. How should I remove that table?

I've already ran migrations, so the table is in my database. I figure rails generate migration should be able to handle this, but I haven't figured out how yet.

I've tried rails generate migration drop_tablename, but that just generated an empty migration.

What is the "offical" way to drop a table in Rails?

share|improve this question
Since rails generate migration has command-line options for generating migration code for creating tables, adding or changing columns, etc., it would be nice if it also had an option for dropping a table -- but it doesn't. Sure, writing the up part is simple -- just call drop_table -- but the down part, generating the table again, might not always be so simple, especially if the schema of the table in question has been changed by migrations after its initial creation. Maybe someone should suggest to the developers of Rails that adding such an option would be a good idea. – Teemu Leisti Sep 12 '12 at 12:14

6 Answers

up vote 66 down vote accepted

You wont always be able to simply generate the migration to already have the code you want. You can create an empty migration and then populate it with the code you need.

You can find information about how to accomplish different tasks in a migration here:

http://api.rubyonrails.org/classes/ActiveRecord/Migration.html

More specifically, you can see how to drop a table using the following approach:

drop_table :table_name
share|improve this answer
5  
Thank you. But apparently SO doesn't let me just say "thank you", I needed more characters :-) – Jason Whitehorn Oct 26 '10 at 3:00
This worked for me too. But on full migrations (installing from scratch) the table will now be first created and later on dropped again. Is it safe to remove the create and drop migrations down the road? – berkes Jan 17 '11 at 20:04
If no other migration uses that table (adding/removing columns, adjusting column attributes, etc.) then it might not harm anything to remove the create/drop migrations. However I'm not sure removing them will buy you any significant improvements. Is there some particular reason you're looking to remove them? – Pete Jan 19 '11 at 0:52
Any view here on whether it's better to drop tables or revert to a previous database schema? – william tell May 11 '12 at 16:23
If you're done with the table and do not plan to use it anymore, I'd say just drop it. Better to get rid of it if its not being used. – Pete May 11 '12 at 21:57

First generate an empty migration with any name you'd like. It's important to do it this way since it creates the appropriate date.

rails generate migration DropProductsTable

This will generate a .rb file in /db/migrate/ like 20111015185025_drop_products_table.rb

Now edit that file to look like this:

class DropProductsTable < ActiveRecord::Migration
  def up
    drop_table :products
  end

  def down
    raise ActiveRecord::IrreversibleMigration
  end
end

The only thing I added was drop_table :products and raise ActiveRecord::IrreversibleMigration.

Then run rake db:migrate and it'll drop the table for you.

share|improve this answer

While the answers provided here work properly, I wanted something a bit more 'straightforward', I found it here: link First enter rails console:

$rails console

Then just type:

ActiveRecord::Migration.drop_table(:users)

Where :users is the table name. And done, worked for me!

share|improve this answer
That doesn't create a migration. It just drops the table using the migration class. Asker is looking to create a migration that drops the table. – Grant Birchmeier Feb 28 at 18:56
1  
@GrantBirchmeier: I definetely agree that this is neither the official nor the best way to drop the table. However I believe the asker isn't looking specifically to create a migration that drops the table. He/She is literally asking first for a "a way to remove the table", where my answer could be of use. And latter for the official way to drop the table, where my answer would not be a very recommended option at all, since a migration is more appropiate. – vint-i-vuit Mar 1 at 7:54

I think, to be completely "official", you would need to create a new migration, and put drop_table in self.up. The self.down method should then contain all the code to recreate the table in full. Presumably that code could just be taken from schema.rb at the time you create the migration.

It seems a little odd, to put in code to create a table you know you aren't going to need anymore, but that would keep all the migration code complete and "official", right?

I just did this for a table I needed to drop, but honestly didn't test the "down" and not sure why I would.

share|improve this answer
Strange but it looks like I'm going to have to do this too. – digitalWestie Jul 12 '11 at 15:20
5  
Or you can just use: raise ActiveRecord::IrreversibleMigration in the self.down method, so you at LEAST give yourself an error / notice if you ever try to rollback. – Steph Rose Mar 14 '12 at 15:55

Open you rails console

ActiveRecord::Base.connection.execute("drop table table_name")

share|improve this answer

I needed to delete our migration scripts along with the tables themselves ...

class Util::Table < ActiveRecord::Migration

 def self.clobber(table_name)   
    # drop the table
    if ActiveRecord::Base.connection.table_exists? table_name
      puts "\n== " + table_name.upcase.cyan + " ! " << Time.now.strftime("%H:%M:%S").yellow
      drop_table table_name 
    end

    # locate any existing migrations for a table and delete them
    base_folder = File.join(Rails.root.to_s, 'db', 'migrate')
    Dir[File.join(base_folder, '**', '*.rb')].each do |file|
      if file =~ /create_#{table_name}.rb/
        puts "== deleting migration: " + file.cyan + " ! " << Time.now.strftime("%H:%M:%S").yellow
        FileUtils.rm_rf(file)
        break
      end
    end
  end

  def self.clobber_all
    # delete every table in the db, along with every corresponding migration 
    ActiveRecord::Base.connection.tables.each {|t| clobber t}
  end

end

from terminal window run:

`$ rails runner "Util::Table.clobber 'your_table_name'"

or

`$ rails runner "Util::Table.clobber_all"

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.