socialforge/db/migrate/20160707031248_create_sonar...

12 lines
221 B
Ruby

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