Mercurial > hg > soundsoftware-site
diff .svn/pristine/d7/d71db2ac4105263a352d2e280dedafe26d5196e1.svn-base @ 940:9fda6880be81 cannam
Merge from the default branch
author | Chris Cannam |
---|---|
date | Wed, 11 Jul 2012 14:35:59 +0100 |
parents | cbb26bc654de |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.svn/pristine/d7/d71db2ac4105263a352d2e280dedafe26d5196e1.svn-base Wed Jul 11 14:35:59 2012 +0100 @@ -0,0 +1,11 @@ +class CreateTests < ActiveRecord::Migration + def self.up + create_table 'tests' do |t| + t.column 'name', :string + end + end + + def self.down + drop_table 'tests' + end +end