Nuevo plugin Redmine Glossary 0.9.2

This commit is contained in:
Manuel Cillero 2019-01-29 19:42:59 +01:00
parent 5d298a7529
commit 693eb3ee50
72 changed files with 2962 additions and 0 deletions

View file

@ -0,0 +1,34 @@
class CreateTerms < ActiveRecord::Migration
def self.up
# CreateTermCategories
create_table :term_categories, :force => true do |t|
t.column :project_id, :integer, :default => 0, :null => false
t.column :name, :string, :default => '', :null => false
t.column :position, :integer, :default => 1
end
add_index "term_categories", ["project_id"], :name => "categories_project_id"
create_table :terms, :force => true do |t|
t.column :project_id, :integer, :default => 0, :null => false
t.column :category_id, :integer
t.column :author_id, :integer, :default => 0, :null => false
t.column :updater_id, :integer
t.column :name, :string, :default => '', :null => false
t.column :name_en, :string, :default => ''
t.column :datatype, :string, :default => ''
t.column :codename, :string, :default => ''
t.column :description, :text
t.column :created_on, :timestamp
t.column :updated_on, :timestamp
end
add_index "terms", ["project_id"], :name => "terms_project_id"
end
def self.down
drop_table :term_categories
drop_table :terms
end
end