-# redMine - project management software
-# Copyright (C) 2006 Jean-Philippe Lang
-#
-# This program is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License
-# as published by the Free Software Foundation; either version 2
-# of the License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-
-class Setup < ActiveRecord::Migration
-
- class User < ActiveRecord::Base; end
- # model removed
- class Permission < ActiveRecord::Base; end
-
+# redMine - project management software\r
+# Copyright (C) 2006 Jean-Philippe Lang\r
+#\r
+# This program is free software; you can redistribute it and/or\r
+# modify it under the terms of the GNU General Public License\r
+# as published by the Free Software Foundation; either version 2\r
+# of the License, or (at your option) any later version.\r
+# \r
+# This program is distributed in the hope that it will be useful,\r
+# but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\r
+# GNU General Public License for more details.\r
+# \r
+# You should have received a copy of the GNU General Public License\r
+# along with this program; if not, write to the Free Software\r
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\r
+\r
+class Setup < ActiveRecord::Migration\r
+ \r
+ class User < ActiveRecord::Base; end\r
+ # model removed\r
+ class Permission < ActiveRecord::Base; end\r
+ \r
def self.up\r
create_table "attachments", :force => true do |t|\r
t.column "container_id", :integer, :default => 0, :null => false\r
t.column "author_id", :integer, :default => 0, :null => false\r
t.column "created_on", :timestamp\r
end\r
-
- create_table "auth_sources", :force => true do |t|
- t.column "type", :string, :limit => 30, :default => "", :null => false
- t.column "name", :string, :limit => 60, :default => "", :null => false
- t.column "host", :string, :limit => 60
- t.column "port", :integer
- t.column "account", :string, :limit => 60
- t.column "account_password", :string, :limit => 60
- t.column "base_dn", :string, :limit => 255
- t.column "attr_login", :string, :limit => 30
- t.column "attr_firstname", :string, :limit => 30
- t.column "attr_lastname", :string, :limit => 30
- t.column "attr_mail", :string, :limit => 30
- t.column "onthefly_register", :boolean, :default => false, :null => false
- end
+\r
+ create_table "auth_sources", :force => true do |t|\r
+ t.column "type", :string, :limit => 30, :default => "", :null => false\r
+ t.column "name", :string, :limit => 60, :default => "", :null => false\r
+ t.column "host", :string, :limit => 60\r
+ t.column "port", :integer\r
+ t.column "account", :string, :limit => 60\r
+ t.column "account_password", :string, :limit => 60\r
+ t.column "base_dn", :string, :limit => 255\r
+ t.column "attr_login", :string, :limit => 30\r
+ t.column "attr_firstname", :string, :limit => 30\r
+ t.column "attr_lastname", :string, :limit => 30\r
+ t.column "attr_mail", :string, :limit => 30\r
+ t.column "onthefly_register", :boolean, :default => false, :null => false\r
+ end\r
\r
- create_table "custom_fields", :force => true do |t|
+ create_table "custom_fields", :force => true do |t|\r
t.column "type", :string, :limit => 30, :default => "", :null => false\r
t.column "name", :string, :limit => 30, :default => "", :null => false\r
t.column "field_format", :string, :limit => 30, :default => "", :null => false\r
t.column "regexp", :string, :default => ""\r
t.column "min_length", :integer, :default => 0, :null => false\r
t.column "max_length", :integer, :default => 0, :null => false\r
- t.column "is_required", :boolean, :default => false, :null => false
- t.column "is_for_all", :boolean, :default => false, :null => false
+ t.column "is_required", :boolean, :default => false, :null => false\r
+ t.column "is_for_all", :boolean, :default => false, :null => false\r
end\r
\r
create_table "custom_fields_projects", :id => false, :force => true do |t|\r
t.column "custom_field_id", :integer, :default => 0, :null => false\r
t.column "project_id", :integer, :default => 0, :null => false\r
end\r
-
- create_table "custom_fields_trackers", :id => false, :force => true do |t|
- t.column "custom_field_id", :integer, :default => 0, :null => false
- t.column "tracker_id", :integer, :default => 0, :null => false
- end
+\r
+ create_table "custom_fields_trackers", :id => false, :force => true do |t|\r
+ t.column "custom_field_id", :integer, :default => 0, :null => false\r
+ t.column "tracker_id", :integer, :default => 0, :null => false\r
+ end\r
\r
create_table "custom_values", :force => true do |t|\r
- t.column "customized_type", :string, :limit => 30, :default => "", :null => false
- t.column "customized_id", :integer, :default => 0, :null => false
+ t.column "customized_type", :string, :limit => 30, :default => "", :null => false\r
+ t.column "customized_id", :integer, :default => 0, :null => false\r
t.column "custom_field_id", :integer, :default => 0, :null => false\r
t.column "value", :text\r
end\r
t.column "title", :string, :limit => 60, :default => "", :null => false\r
t.column "description", :text\r
t.column "created_on", :timestamp\r
- end
-
+ end\r
+ \r
add_index "documents", ["project_id"], :name => "documents_project_id"\r
\r
create_table "enumerations", :force => true do |t|\r
create_table "issue_categories", :force => true do |t|\r
t.column "project_id", :integer, :default => 0, :null => false\r
t.column "name", :string, :limit => 30, :default => "", :null => false\r
- end
-
+ end\r
+ \r
add_index "issue_categories", ["project_id"], :name => "issue_categories_project_id"\r
\r
create_table "issue_histories", :force => true do |t|\r
t.column "tracker_id", :integer, :default => 0, :null => false\r
t.column "project_id", :integer, :default => 0, :null => false\r
t.column "subject", :string, :default => "", :null => false\r
- t.column "description", :text
+ t.column "description", :text\r
t.column "due_date", :date\r
t.column "category_id", :integer\r
t.column "status_id", :integer, :default => 0, :null => false\r
t.column "assigned_to_id", :integer\r
t.column "priority_id", :integer, :default => 0, :null => false\r
t.column "fixed_version_id", :integer\r
- t.column "author_id", :integer, :default => 0, :null => false
+ t.column "author_id", :integer, :default => 0, :null => false\r
t.column "lock_version", :integer, :default => 0, :null => false\r
t.column "created_on", :timestamp\r
t.column "updated_on", :timestamp\r
t.column "description", :text\r
t.column "author_id", :integer, :default => 0, :null => false\r
t.column "created_on", :timestamp\r
- end
-
+ end\r
+ \r
add_index "news", ["project_id"], :name => "news_project_id"\r
\r
create_table "permissions", :force => true do |t|\r
t.column "name", :string, :limit => 30, :default => "", :null => false\r
t.column "description", :string, :default => "", :null => false\r
t.column "homepage", :string, :limit => 60, :default => ""\r
- t.column "is_public", :boolean, :default => true, :null => false
- t.column "parent_id", :integer
+ t.column "is_public", :boolean, :default => true, :null => false\r
+ t.column "parent_id", :integer\r
t.column "projects_count", :integer, :default => 0\r
t.column "created_on", :timestamp\r
t.column "updated_on", :timestamp\r
create_table "roles", :force => true do |t|\r
t.column "name", :string, :limit => 30, :default => "", :null => false\r
end\r
-
- create_table "tokens", :force => true do |t|
- t.column "user_id", :integer, :default => 0, :null => false
- t.column "action", :string, :limit => 30, :default => "", :null => false
- t.column "value", :string, :limit => 40, :default => "", :null => false
- t.column "created_on", :datetime, :null => false
- end
+\r
+ create_table "tokens", :force => true do |t|\r
+ t.column "user_id", :integer, :default => 0, :null => false\r
+ t.column "action", :string, :limit => 30, :default => "", :null => false\r
+ t.column "value", :string, :limit => 40, :default => "", :null => false\r
+ t.column "created_on", :datetime, :null => false\r
+ end\r
\r
create_table "trackers", :force => true do |t|\r
t.column "name", :string, :limit => 30, :default => "", :null => false\r
t.column "admin", :boolean, :default => false, :null => false\r
t.column "status", :integer, :default => 1, :null => false\r
t.column "last_login_on", :datetime\r
- t.column "language", :string, :limit => 2, :default => ""
+ t.column "language", :string, :limit => 2, :default => ""\r
t.column "auth_source_id", :integer\r
t.column "created_on", :timestamp\r
t.column "updated_on", :timestamp\r
t.column "effective_date", :date\r
t.column "created_on", :timestamp\r
t.column "updated_on", :timestamp\r
- end
-
+ end\r
+ \r
add_index "versions", ["project_id"], :name => "versions_project_id"\r
\r
create_table "workflows", :force => true do |t|\r
Permission.create :controller => "issue_categories", :action => "destroy", :description => "button_delete", :sort => 422\r
# issues\r
Permission.create :controller => "projects", :action => "list_issues", :description => "button_list", :sort => 1000, :is_public => true\r
- Permission.create :controller => "projects", :action => "export_issues_csv", :description => "label_export_csv", :sort => 1001, :is_public => true
+ Permission.create :controller => "projects", :action => "export_issues_csv", :description => "label_export_csv", :sort => 1001, :is_public => true\r
Permission.create :controller => "issues", :action => "show", :description => "button_view", :sort => 1005, :is_public => true\r
Permission.create :controller => "issues", :action => "download", :description => "button_download", :sort => 1010, :is_public => true\r
Permission.create :controller => "projects", :action => "add_issue", :description => "button_add", :sort => 1050, :mail_option => 1, :mail_enabled => 1\r
Permission.create :controller => "projects", :action => "add_news", :description => "button_add", :sort => 1120\r
Permission.create :controller => "news", :action => "edit", :description => "button_edit", :sort => 1121\r
Permission.create :controller => "news", :action => "destroy", :description => "button_delete", :sort => 1122\r
- # documents
+ # documents\r
Permission.create :controller => "projects", :action => "list_documents", :description => "button_list", :sort => 1200, :is_public => true\r
Permission.create :controller => "documents", :action => "show", :description => "button_view", :sort => 1201, :is_public => true\r
Permission.create :controller => "documents", :action => "download", :description => "button_download", :sort => 1202, :is_public => true\r
Permission.create :controller => "versions", :action => "destroy_file", :description => "button_delete", :sort => 1322\r
\r
# create default administrator account\r
- user = User.create :login => "admin",
- :hashed_password => "d033e22ae348aeb5660fc2140aec35850c4da997",
- :admin => true,
- :firstname => "Redmine",
- :lastname => "Admin",
- :mail => "admin@example.net",
- :mail_notification => true,
- :language => "en",
- :status => 1
- end
-
+ user = User.create :login => "admin",\r
+ :hashed_password => "d033e22ae348aeb5660fc2140aec35850c4da997",\r
+ :admin => true,\r
+ :firstname => "Redmine",\r
+ :lastname => "Admin",\r
+ :mail => "admin@example.net",\r
+ :mail_notification => true,\r
+ :language => "en",\r
+ :status => 1\r
+ end\r
+\r
def self.down\r
- drop_table :attachments
+ drop_table :attachments\r
drop_table :auth_sources\r
drop_table :custom_fields\r
- drop_table :custom_fields_projects
+ drop_table :custom_fields_projects\r
drop_table :custom_fields_trackers\r
drop_table :custom_values\r
drop_table :documents\r
drop_table :projects\r
drop_table :roles\r
drop_table :trackers\r
- drop_table :tokens
+ drop_table :tokens\r
drop_table :users\r
drop_table :versions\r
- drop_table :workflows
- end
-end
+ drop_table :workflows\r
+ end\r
+end\r