Sha256: 7f270f5b68b8e68fec3eadf9f971ce1add16a146a998deb3ac6960ee20d33fc1
Contents?: true
Size: 480 Bytes
Versions: 140
Compression:
Stored size: 480 Bytes
Contents
class CreateRemoteExecutionFeatures < ActiveRecord::Migration[4.2] 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
140 entries across 140 versions & 1 rubygems