Mercurial > hg > soundsoftware-site
view .svn/pristine/ef/ef0ad884b2ab9390065781b55804cce0528e385a.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 CreateRepositories < ActiveRecord::Migration def self.up create_table :repositories, :force => true do |t| t.column "project_id", :integer, :default => 0, :null => false t.column "url", :string, :default => "", :null => false end end def self.down drop_table :repositories end end