socialforge/db/migrate/20160707031248_create_sonar...

12 lines
221 B
Ruby
Raw Normal View History

2016-07-07 14:22:48 +08:00
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