12 lines
235 B
Ruby
12 lines
235 B
Ruby
|
class CreateQualityAnalyses < ActiveRecord::Migration
|
||
|
def change
|
||
|
create_table :quality_analyses do |t|
|
||
|
t.integer :project_id
|
||
|
t.string :author_login
|
||
|
t.string :rep_identifier
|
||
|
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|