6 lines
131 B
Ruby
6 lines
131 B
Ruby
class RemoveThumbnailFromPosts < ActiveRecord::Migration[8.0]
|
|
def change
|
|
remove_column :posts, :thumbnail, :string
|
|
end
|
|
end
|