Mercurial > hg > soundsoftware-site
view .svn/pristine/2a/2adb9560bc07d7847c894a43ae505527519cc349.svn-base @ 1386:e4c393cebb1a luisf
Merger from testing branch.
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Tue, 24 Sep 2013 16:25:05 +0100 |
parents | 038ba2d95de8 |
children |
line wrap: on
line source
class AddWorkflowsRuleFields < ActiveRecord::Migration def up add_column :workflows, :field_name, :string, :limit => 30 add_column :workflows, :rule, :string, :limit => 30 end def down remove_column :workflows, :field_name remove_column :workflows, :rule end end