f9d93ef2175af055ecc415ddb1003b1d3468cbee
[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