mirror of
https://github.com/ENSL/ensl.org.git
synced 2025-01-13 21:31:28 +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
|