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

12 lines
362 B
Ruby
Raw Permalink 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|
2014-01-21 04:51:49 +00:00
t.integer :issue_id, null: false
2014-03-14 17:41:49 +00:00
t.integer :base_project_id, null: false, references: nil
t.integer :head_project_id, null: false, references: nil
2014-01-21 04:51:49 +00:00
t.string :base_ref, null: false
t.string :head_ref, null: false
2012-04-28 18:28:57 +01:00
end
2012-04-16 19:40:50 +01:00
end
end