Sha256: 4f4208d9d43896a50da2e53b7f29372383c0fb6cc158353b8ac291ec0dd29a83

Contents?: true

Size: 326 Bytes

Versions: 17

Compression:

Stored size: 326 Bytes

Contents

class CreateSprints < ActiveRecord::Migration
  def change
    create_table :sprints do |t|
      t.integer :project_id, null: false
      t.date :end_date

      t.timestamps
    end

    add_index :sprints, [:project_id, :end_date]

    add_column :tickets, :sprint_id, :integer
    add_index :tickets, :sprint_id
  end
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
houston-core-0.8.0.pre db/migrate/20131012152403_create_sprints.rb
houston-core-0.7.0 db/migrate/20131012152403_create_sprints.rb
houston-core-0.7.0.beta4 db/migrate/20131012152403_create_sprints.rb
houston-core-0.7.0.beta3 db/migrate/20131012152403_create_sprints.rb
houston-core-0.7.0.beta2 db/migrate/20131012152403_create_sprints.rb
houston-core-0.7.0.beta db/migrate/20131012152403_create_sprints.rb
houston-core-0.6.3 db/migrate/20131012152403_create_sprints.rb
houston-core-0.6.2 db/migrate/20131012152403_create_sprints.rb
houston-core-0.6.1 db/migrate/20131012152403_create_sprints.rb
houston-core-0.6.0 db/migrate/20131012152403_create_sprints.rb
houston-core-0.5.6 db/migrate/20131012152403_create_sprints.rb
houston-core-0.5.5 db/migrate/20131012152403_create_sprints.rb
houston-core-0.5.4 db/migrate/20131012152403_create_sprints.rb
houston-core-0.5.3 db/migrate/20131012152403_create_sprints.rb
houston-core-0.5.2 db/migrate/20131012152403_create_sprints.rb
houston-core-0.5.1 db/migrate/20131012152403_create_sprints.rb
houston-core-0.5.0 db/migrate/20131012152403_create_sprints.rb