You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trustieforge/db/migrate/20160707031248_create_sonar...

12 lines
221 B

class CreateSonarErrors < ActiveRecord::Migration
def change
create_table :sonar_errors do |t|
t.integer :project_id
t.string :jenkins_job_name
t.text :output
t.timestamps
end
end
end