OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/db/migrate/20130807085245_create_wiki_...

12 lines
493 B

class CreateWikiContentJournals < ActiveRecord::Migration
def change
create_table :wiki_content_journals do |t|
t.integer :journal_id, :null => false
t.integer :page_id, :null => false
t.integer :author_id
t.text :text, :limit => 2147483647
t.datetime :updated_on, :null => false
t.integer :lock_version, :null => false
end
end
end