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
/
20120629102742_create_project_proposals.rb
blob
77970cbd8de34b422d8aa032fc2abf8efd941e83
1
class CreateProjectProposals < ActiveRecord::Migration
2
def self.up
3
create_table :project_proposals do |t|
4
t.string :title
5
t.text :description
6
t.integer :user_id
7
t.timestamps
8
end
9
end
10
11
def self.down
12
drop_table :project_proposals
13
end
14
end