Skip to content

Commit

Permalink
Fixed bug because of validation. (IssueID: #993)
Browse files Browse the repository at this point in the history
  • Loading branch information
akiko-pusu committed Apr 6, 2012
1 parent 058f0b1 commit 8636387
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/coverage/
11 changes: 11 additions & 0 deletions db/migrate/004_change_column_style.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# To change this template, choose Tools | Templates
# and open the template in the editor.

class ChangeColumnStyle < ActiveRecord::Migration
def self.up
change_column :banners, :style, :string, :default => "info", :null => false
end

def self.down
end
end

0 comments on commit 8636387

Please sign in to comment.