class CreateAppDetections

typed: true

Public Instance Methods

change() click to toggle source
# File server/redux-os/db/migrate/20191001091728_create_app_detections.rb, line 3
def change
  create_table :app_detections do |t|
    t.string :app_type
    t.text :strategy

    t.timestamps
  end
end