projects
/
rails.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Remove height specification for sidebar in small screen mode
[rails.git]
/
db
/
migrate
/
036_add_visible_to_message.rb
1
class AddVisibleToMessage < ActiveRecord::Migration
2
def self.up
3
add_column :messages, :visible, :boolean, :default => true, :null => false
4
end
5
6
def self.down
7
remove_column :messages, :visible
8
end
9
end