rosa-build/db/migrate/20120412173938_create_pull_...

12 lines
343 B
Ruby
Raw Normal View History

2012-04-16 19:40:50 +01:00
class CreatePullRequests < ActiveRecord::Migration
def change
2012-04-28 18:28:57 +01:00
create_table :pull_requests do |t|
t.integer :issue_id, :null => false
t.integer :base_project_id, :null => false
t.integer :head_project_id, :null => false
t.string :base_ref, :null => false
t.string :head_ref, :null => false
end
2012-04-16 19:40:50 +01:00
end
end