Moved the redmine plugin to a seperate repositiory: http://github.com/fnp/redakcja_re...
[redakcja.git] / redmine / redmine_publications / db / migrate / 002_create_issue_publications.rb
diff --git a/redmine/redmine_publications/db/migrate/002_create_issue_publications.rb b/redmine/redmine_publications/db/migrate/002_create_issue_publications.rb
deleted file mode 100644 (file)
index 07b64bd..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-class CreateIssuePublications < ActiveRecord::Migration
-  def self.up
-    create_table :issue_publications do |t| 
-       t.column :publication_id, :integer, :null => false
-        t.column :issue_id, :integer, :null => false
-    end
-  end
-
-  def self.down
-    drop_table :issue_publications
-  end
-end