12 lines
221 B
Ruby
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
|