Class: SetupDeployBuildTable

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/db/migrate/001_setup_deploy_build_table.rb

Instance Method Summary collapse

Instance Method Details

#downObject



11
12
13
# File 'lib/db/migrate/001_setup_deploy_build_table.rb', line 11

def down
  drop_table :deploy_builds
end

#upObject



2
3
4
5
6
7
8
9
# File 'lib/db/migrate/001_setup_deploy_build_table.rb', line 2

def up
  create_table :deploy_builds do |t|
    t.string  :job_name
    t.string  :git_sha
    t.integer :build_number
    t.integer :created_at, :limit => 8
  end
end