5 lines
97 B
Ruby
5 lines
97 B
Ruby
class DropNotesTable < ActiveRecord::Migration[8.0]
|
|
def change
|
|
drop_table :notes
|
|
end
|
|
end
|