7 lines
133 B
Ruby
7 lines
133 B
Ruby
|
class RemoveLearningGoals < ActiveRecord::Migration[7.1]
|
||
|
def change
|
||
|
drop_table :todos
|
||
|
drop_table :learning_goals
|
||
|
end
|
||
|
end
|