summaryrefslogtreecommitdiff
path: root/db/ci/migrate/20130531125905_create_runners.rb
blob: 2619394f51bb276627c171a3b8f16d47a9d19a02 (plain)
1
2
3
4
5
6
7
8
9
10
class CreateRunners < ActiveRecord::Migration
  def change
    create_table :runners do |t|
      t.string :token
      t.text :public_key

      t.timestamps
    end
  end
end