1. Wyƛwietlanie i edycja pola "source_file" w widoku ticketu.
[redakcja_redmine.git] / 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, :intrger, :null => false
6     end
7   end
8
9   def self.down
10     drop_table :issue_publications
11   end
12 end