fnp
/
redakcja.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge branch 'master' of git@stigma:platforma
[redakcja.git]
/
redmine
/
redmine_publications
/
db
/
migrate
/
001_create_publications.rb
1
class CreatePublications < ActiveRecord::Migration
2
def self.up
3
create_table :publications do |t|
4
t.column :source_file, :string, :null => false
5
end
6
end
7
8
def self.down
9
drop_table :publications
10
end
11
end