repo.or.cz
/
gitorious.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Handle not ready repos
[gitorious.git]
/
db
/
migrate
/
20090204150126_add_description_to_repositories.rb
blob
c0bb406f9d0f8f202f6ac4e4ecee4be8e81cf971
1
class AddDescriptionToRepositories < ActiveRecord::Migration
2
def self.up
3
add_column :repositories, :description, :text
4
end
5
6
def self.down
7
remove_column :repositories, :description
8
end
9
end