summaryrefslogtreecommitdiff
path: root/db/migrate/20121004165038_create_builds.rb
blob: 547803489fb686d0f9894dd476105ea376a5b661 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class CreateBuilds < ActiveRecord::Migration
  def up
    create_table :builds do |t|
      t.integer :project_id
      t.string :commit_ref
      t.string :status
      t.datetime :finished_at
      t.text :trace
      t.timestamps
    end
  end

  def down
  end
end