1
|
bash-3.2# rake db:migrate RAILS_ENV=production
|
2
|
Please install RDoc 2.4.2+ to generate documentation.
|
3
|
== CreateChangesetParents: migrating =========================================
|
4
|
-- create_table(:changeset_parents, {:id=>false})
|
5
|
-> 0.0037s
|
6
|
-- add_index(:changeset_parents, [:changeset_id], {:name=>:changeset_parents_changeset_ids, :unique=>false})
|
7
|
-> 0.0426s
|
8
|
-- add_index(:changeset_parents, [:parent_id], {:name=>:changeset_parents_parent_ids, :unique=>false})
|
9
|
-> 0.2549s
|
10
|
== CreateChangesetParents: migrated (0.3017s) ================================
|
11
|
|
12
|
== AddUniqueIndexToIssueRelations: migrating =================================
|
13
|
-- add_index(:issue_relations, [:issue_from_id, :issue_to_id], {:unique=>true})
|
14
|
-> 0.1390s
|
15
|
== AddUniqueIndexToIssueRelations: migrated (0.1451s) ========================
|
16
|
|
17
|
== AddRepositoriesIdentifier: migrating ======================================
|
18
|
-- add_column(:repositories, :identifier, :string)
|
19
|
-> 0.0115s
|
20
|
== AddRepositoriesIdentifier: migrated (0.0116s) =============================
|
21
|
|
22
|
== AddRepositoriesIsDefault: migrating =======================================
|
23
|
-- add_column(:repositories, :is_default, :boolean, {:default=>false})
|
24
|
-> 0.0049s
|
25
|
== AddRepositoriesIsDefault: migrated (0.0052s) ==============================
|
26
|
|
27
|
== SetDefaultRepositories: migrating =========================================
|
28
|
== SetDefaultRepositories: migrated (0.0041s) ================================
|
29
|
|
30
|
== AddCustomFieldsMultiple: migrating ========================================
|
31
|
-- add_column(:custom_fields, :multiple, :boolean, {:default=>false})
|
32
|
-> 0.0043s
|
33
|
== AddCustomFieldsMultiple: migrated (0.0045s) ===============================
|
34
|
|
35
|
== ChangeUsersLoginLimit: migrating ==========================================
|
36
|
-- change_column(:users, :login, :string, {:null=>false, :default=>"", :limit=>nil})
|
37
|
-> 0.0128s
|
38
|
== ChangeUsersLoginLimit: migrated (0.0130s) =================================
|
39
|
|
40
|
== ChangeAttachmentsContainerDefaults: migrating =============================
|
41
|
-- remove_index(:attachments, [:container_id, :container_type])
|
42
|
-> 0.0024s
|
43
|
-- change_column(:attachments, :container_id, :integer, {:null=>true, :default=>nil})
|
44
|
-> 0.0083s
|
45
|
-- change_column(:attachments, :container_type, :string, {:null=>true, :default=>nil, :limit=>30})
|
46
|
-> 0.0093s
|
47
|
-- add_index(:attachments, [:container_id, :container_type])
|
48
|
-> 0.1213s
|
49
|
== ChangeAttachmentsContainerDefaults: migrated (0.1425s) ====================
|
50
|
|
51
|
== AddAuthSourcesFilter: migrating ===========================================
|
52
|
-- add_column(:auth_sources, :filter, :string)
|
53
|
-> 0.0050s
|
54
|
== AddAuthSourcesFilter: migrated (0.0052s) ==================================
|
55
|
|
56
|
bash-3.2# rake db:migrate:upgrade_plugin_migrations RAILS_ENV=production
|
57
|
Please install RDoc 2.4.2+ to generate documentation.
|
58
|
Cannot find old migration table - assuming nothing needs to be done
|
59
|
bash-3.2# rake db:migrate_plugins RAILS_ENV=production
|
60
|
Please install RDoc 2.4.2+ to generate documentation.
|
61
|
Migrating engines...
|
62
|
Migrating acts_as_activity_provider...
|
63
|
Migrating acts_as_attachable...
|
64
|
Migrating acts_as_customizable...
|
65
|
Migrating acts_as_event...
|
66
|
Migrating acts_as_list...
|
67
|
Migrating acts_as_searchable...
|
68
|
Migrating acts_as_tree...
|
69
|
Migrating acts_as_versioned...
|
70
|
Migrating acts_as_watchable...
|
71
|
Migrating awesome_nested_set...
|
72
|
Migrating classic_pagination...
|
73
|
Migrating gravatar...
|
74
|
Migrating open_id_authentication...
|
75
|
Migrating prepend_engine_views...
|
76
|
Migrating redmine_add_subversion_links...
|
77
|
Migrating redmine_lightbox...
|
78
|
Migrating redmine_logs...
|
79
|
Migrating redmine_todos_plugin...
|
80
|
Migrating rfpdf...
|
81
|
bash-3.2#
|