remove trailing white-spaces from db/migrate/028_create_wiki_pages.rb (#9510)
Contributed by Igor Zubkov. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7737 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
418a4e49f8
commit
8c560fa581
|
@ -3,7 +3,7 @@ class CreateWikiPages < ActiveRecord::Migration
|
|||
create_table :wiki_pages do |t|
|
||||
t.column :wiki_id, :integer, :null => false
|
||||
t.column :title, :string, :limit => 255, :null => false
|
||||
t.column :created_on, :datetime, :null => false
|
||||
t.column :created_on, :datetime, :null => false
|
||||
end
|
||||
add_index :wiki_pages, [:wiki_id, :title], :name => :wiki_pages_wiki_id_title
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue