0
0
Fork 0
mirror of https://github.com/ENSL/ensl.org.git synced 2025-03-18 00:21:50 +00:00
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