1. Wyƛwietlanie i edycja pola "source_file" w widoku ticketu.
[redakcja_redmine.git] / 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