Mercurial > hg > soundsoftware-site
view .svn/pristine/20/20a7321b833bdd91a5023c5357f95fd8e6250105.svn-base @ 1477:f2ad2199b49a bibplugin_integration
Close obsolete branch bibplugin_integration
author | Chris Cannam |
---|---|
date | Fri, 30 Nov 2012 14:41:31 +0000 |
parents | cbb26bc654de |
children |
line wrap: on
line source
class CreateMemberRoles < ActiveRecord::Migration def self.up create_table :member_roles do |t| t.column :member_id, :integer, :null => false t.column :role_id, :integer, :null => false end end def self.down drop_table :member_roles end end