Bump image limit from 100 to 450

image_updates
Rick Carlino 2020-04-12 10:24:17 -05:00
parent 8f9bd4a5e7
commit d730cd9260
2 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,4 @@
class MakeDefaulDeviceNameFarmbot < ActiveRecord::Migration[5.1]
def change
change_column_default(:devices, :name, "Farmbot")
end

View File

@ -0,0 +1,5 @@
class UpdateMaxImageCount < ActiveRecord::Migration[6.0]
def change
change_column_default(:images, :max_images_count, 450)
end
end