mirror of
https://github.com/ENSL/ensl.org.git
synced 2025-01-12 12:50:53 +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
|