class CreateAppDetectionStrategies
typed: true
Public Instance Methods
change()
click to toggle source
# File server/redux-os/db/migrate/20191001091923_create_app_detection_strategies.rb, line 3 def change create_table :app_detection_strategies do |t| t.references :app_detection, null: false, foreign_key: true t.text :implementation_in_ruby_dsl t.timestamps end end