fnp
/
redakcja.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Zmieniono okres autozapisu na 5 min.
[redakcja.git]
/
redmine
/
redmine_publications
/
db
/
migrate
/
002_create_issue_publications.rb
1
class CreateIssuePublications < ActiveRecord::Migration
2
def self.up
3
create_table :issue_publications do |t|
4
t.column :publication_id, :integer, :null => false
5
t.column :issue_id, :integer, :null => false
6
end
7
end
8
9
def self.down
10
drop_table :issue_publications
11
end
12
end