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/20130807085604_create_docum...

13 lines
492 B

class CreateDocumentJournals < ActiveRecord::Migration
def change
create_table :document_journals do |t|
t.integer :journal_id, :null => false
t.integer :project_id, :default => 0, :null => false
t.integer :category_id, :default => 0, :null => false
t.string :title, :limit => 60, :default => "", :null => false
t.text :description
t.datetime :created_on
end
end
end