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

I have a rake task that won't work unless a table exists. I'm working with more than 20 engineers on a website so I want to make sure they have migrated the table before they can do a rake task which will populate that respective table.

Does AR have a method such as Table.exists? How can I make sure they have migrated the table successfully?

share|improve this question
4  
The joke goes.. how many engineers does it take to migrate a table :) – Zabba Jul 5 '11 at 23:47
1  
On production 1. On Staging dozens and multiple times each . – Codeglot Jul 5 '11 at 23:48
1  
Wouldn't it be easier just run the migrations on the start of your rake task? So you don't have to worry about missing tables. – raskhadafi Jul 24 '12 at 20:48

2 Answers

up vote 61 down vote accepted

In Rails 2 & 3:

# Gives you a listing
ActiveRecord::Base.connection.tables
# Checks for existence of kittens table (Kitten model)
ActiveRecord::Base.connection.table_exists? 'kittens'

# Tells you all migrations run
ActiveRecord::Migrator.get_all_versions
# Tells you the current schema version
ActiveRecord::Migrator.current_version
share|improve this answer
2  
ActiveRecord::Base.connection.table_exist 'users' would check for a users table. – Codeglot Jul 5 '11 at 23:56
Cheers @Codeglot, updated answer to include an argument. – CaptainPete Jul 5 '11 at 23:57
4  
ActiveRecord::Base.connection.table_exists? 'kittens would check for a Kitten table. That is unless I destroyed all kittens! drop_table :kittens – Codeglot Jul 5 '11 at 23:59
Thanks guys! I just used .index_exists?('kittens', 'paws') – Trip Oct 26 '12 at 15:34
2  
This works for ActiveRecord 3.2.11 drop_table(:hosts_users) if table_exists? :hosts_users – Greg Feb 13 at 13:46

even if table is not exists:

model Kitten, expected table kittens rails 3:

Kitten.table_exists? #=> false

share|improve this answer
this doesn't work. – manish nautiyal 2 days ago

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.