OSDN Git Service

t#31653:add scenario
[pettanr/pettanr.git] / db / migrate / 20130709074533_add_quotes_on_speeches.rb
1 class AddQuotesOnSpeeches < ActiveRecord::Migration
2   def up
3     add_column :speeches, :quotes, :string, :limit => 15, :default => "' '"
4   end
5
6   def down
7     remove_column :speeches, :quotes
8   end
9 end