Mercurial > hg > soundsoftware-site
view .svn/pristine/10/10f74e3a18ae17108789fde8071c8bf836627534.svn-base @ 1192:3c9ca27c2d3d feature_564
Add approximate back-of-envelope calculation of project maturity
author | Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
---|---|
date | Tue, 22 Jan 2013 16:51:56 +0000 |
parents | cbb26bc654de |
children |
line wrap: on
line source
class CreateChangesetParents < ActiveRecord::Migration def self.up create_table :changeset_parents, :id => false do |t| t.column :changeset_id, :integer, :null => false t.column :parent_id, :integer, :null => false end add_index :changeset_parents, [:changeset_id], :unique => false, :name => :changeset_parents_changeset_ids add_index :changeset_parents, [:parent_id], :unique => false, :name => :changeset_parents_parent_ids end def self.down drop_table :changeset_parents end end