summaryrefslogtreecommitdiff
path: root/db/ci/migrate/20130603144959_create_runner_projects.rb
blob: c65c8a51bcfa3583385943bdb7b9c8d98868ad1b (plain)
1
2
3
4
5
6
7
8
9
10
class CreateRunnerProjects < ActiveRecord::Migration
  def change
    create_table :runner_projects do |t|
      t.integer :runner_id, null: false
      t.integer :project_id, null: false

      t.timestamps
    end
  end
end