9 lines
109 B
Ruby
9 lines
109 B
Ruby
![]() |
class RemoveArticles < ActiveRecord::Migration
|
||
|
def up
|
||
|
drop_table :articles
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
end
|
||
|
end
|