##// END OF EJS Templates
Workflow enhancement: editable and required fields configurable by role, tracker and status (#703, #3521)....
Workflow enhancement: editable and required fields configurable by role, tracker and status (#703, #3521). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9977 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r7630:e154b336bd93
r9794:d7b669e50b1c
Show More
029_create_wiki_contents.rb
30 lines | 1.1 KiB | text/x-ruby | RubyLexer
/ db / migrate / 029_create_wiki_contents.rb
Jean-Philippe Lang
wiki branch merged into trunk...
r320 class CreateWikiContents < ActiveRecord::Migration
def self.up
create_table :wiki_contents do |t|
t.column :page_id, :integer, :null => false
t.column :author_id, :integer
Jean-Philippe Lang
fixed migration scripts to work with mysql 5 running in strict mode...
r346 t.column :text, :text
Jean-Philippe Lang
Fixed: 10342 Creation of Schema in Oracle...
r476 t.column :comments, :string, :limit => 255, :default => ""
Jean-Philippe Lang
wiki branch merged into trunk...
r320 t.column :updated_on, :datetime, :null => false
t.column :version, :integer, :null => false
end
add_index :wiki_contents, :page_id, :name => :wiki_contents_page_id
Toshi MARUYAMA
remove trailing white-spaces from db/migrate/029_create_wiki_contents.rb (#9510)...
r7630
Jean-Philippe Lang
wiki branch merged into trunk...
r320 create_table :wiki_content_versions do |t|
t.column :wiki_content_id, :integer, :null => false
t.column :page_id, :integer, :null => false
t.column :author_id, :integer
t.column :data, :binary
t.column :compression, :string, :limit => 6, :default => ""
Jean-Philippe Lang
Fixed: 10342 Creation of Schema in Oracle...
r476 t.column :comments, :string, :limit => 255, :default => ""
Jean-Philippe Lang
wiki branch merged into trunk...
r320 t.column :updated_on, :datetime, :null => false
t.column :version, :integer, :null => false
end
add_index :wiki_content_versions, :wiki_content_id, :name => :wiki_content_versions_wcid
end
def self.down
drop_table :wiki_contents
drop_table :wiki_content_versions
end
end