projects
/
rails.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Standardise on double quoted strings
[rails.git]
/
db
/
migrate
/
056_add_date_closed.rb
1
require "migrate"
2
3
class AddDateClosed < ActiveRecord::Migration
4
def self.up
5
add_column :map_bugs, :date_closed, :timestamp
6
end
7
8
def self.down
9
remove_column :map_bugs, :date_closed
10
end
11
end