diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-09-09 17:05:38 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-09-09 17:05:38 +0000 |
commit | b4d9ca8875898500ca198bff501dfc7d1c28bd71 (patch) | |
tree | 8d9ebcf80cd56b427211b6b769514ab8d66f33a2 /db | |
parent | f6fe15716e4714c5f6d4d88149927b7dfa5c6fce (diff) | |
download | redmine-b4d9ca8875898500ca198bff501dfc7d1c28bd71.tar.gz redmine-b4d9ca8875898500ca198bff501dfc7d1c28bd71.zip |
Added the ability to rename wiki pages (specific permission required).
Existing links that point to the old page are preserved and automatically redirected to the new page (this behaviour can be disabled when renaming the page).
git-svn-id: http://redmine.rubyforge.org/svn/trunk@720 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/067_create_wiki_redirects.rb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/db/migrate/067_create_wiki_redirects.rb b/db/migrate/067_create_wiki_redirects.rb new file mode 100644 index 000000000..dda6ba6d5 --- /dev/null +++ b/db/migrate/067_create_wiki_redirects.rb @@ -0,0 +1,15 @@ +class CreateWikiRedirects < ActiveRecord::Migration + def self.up + create_table :wiki_redirects do |t| + t.column :wiki_id, :integer, :null => false + t.column :title, :string + t.column :redirects_to, :string + t.column :created_on, :datetime, :null => false + end + add_index :wiki_redirects, [:wiki_id, :title], :name => :wiki_redirects_wiki_id_title + end + + def self.down + drop_table :wiki_redirects + end +end |