socialforge/db/migrate/20160622033322_create_quali...

12 lines
235 B
Ruby
Raw Normal View History

2016-06-22 11:25:59 +08:00
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