Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20121004165038_create_builds.rb « migrate « ci « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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