Sha256: 818153773bf38cc9cfcb43ad8facb85e04153e7606eab027a319ee5225a17980
Contents?: true
Size: 475 Bytes
Versions: 16
Compression:
Stored size: 475 Bytes
Contents
class CreateRemoteExecutionFeatures < ActiveRecord::Migration def change create_table :remote_execution_features do |t| t.string :label, :index => true, :null => false, :limit => 255 t.string :name, :null => false, :limit => 255 t.string :description, :limit => 255 t.text :provided_inputs t.integer :job_template_id, :index => true end add_foreign_key :remote_execution_features, :templates, :column => :job_template_id end end
Version data entries
16 entries across 16 versions & 1 rubygems