ensl.org/db/migrate/20150701233306_remove_tweets.rb
2015-07-02 02:34:58 +03:00

8 lines
104 B
Ruby

class RemoveTweets < ActiveRecord::Migration
def up
drop_table :tweets
end
def down
end
end