mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-26 04:21:36 +00:00
8 lines
104 B
Ruby
8 lines
104 B
Ruby
class RemoveTweets < ActiveRecord::Migration
|
|
def up
|
|
drop_table :tweets
|
|
end
|
|
|
|
def down
|
|
end
|
|
end
|