LoginSignup
2
2

More than 5 years have passed since last update.

migrationで安全にtableをdropする

Last updated at Posted at 2014-12-24

開発途中だと、何らかの原因でテーブルが既に消えていて、migrationのdownに失敗することがあります。
きれいに作ることができれば、ありえないパターンですが、発生してしまいまいがちです。
回避するためにテーブルをチェックしてからdropします。

def down
  :hoge_tables.tap{ |t| drop_table t if ActiveRecord::Base.connection.table_exists?(t) }
end
2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2