12 lines
246 B
Ruby
12 lines
246 B
Ruby
class CreateErrorTemplates < ActiveRecord::Migration
|
|
def change
|
|
create_table :error_templates do |t|
|
|
t.belongs_to :execution_environment
|
|
t.string :name
|
|
t.string :signature
|
|
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|