From cf8c9d3ed057a6f6f062343de54d17ae7aefd58b Mon Sep 17 00:00:00 2001 From: Ari Timonen Date: Thu, 2 Jul 2015 02:34:58 +0300 Subject: [PATCH] Remove tweets, continued --- db/migrate/20150701233306_remove_tweets.rb | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 db/migrate/20150701233306_remove_tweets.rb diff --git a/db/migrate/20150701233306_remove_tweets.rb b/db/migrate/20150701233306_remove_tweets.rb new file mode 100644 index 0000000..d86c6ee --- /dev/null +++ b/db/migrate/20150701233306_remove_tweets.rb @@ -0,0 +1,8 @@ +class RemoveTweets < ActiveRecord::Migration + def up + drop_table :tweets + end + + def down + end +end