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