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