|
|
@ -11,7 +11,7 @@
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# It's strongly recommended to check this file into your version control system.
|
|
|
|
# It's strongly recommended to check this file into your version control system.
|
|
|
|
|
|
|
|
|
|
|
|
ActiveRecord::Schema.define(:version => 20140421044830) do
|
|
|
|
ActiveRecord::Schema.define(:version => 20140421091020) do
|
|
|
|
|
|
|
|
|
|
|
|
create_table "activities", :force => true do |t|
|
|
|
|
create_table "activities", :force => true do |t|
|
|
|
|
t.integer "act_id", :null => false
|
|
|
|
t.integer "act_id", :null => false
|
|
|
@ -754,6 +754,11 @@ ActiveRecord::Schema.define(:version => 20140421044830) do
|
|
|
|
add_index "time_entries", ["project_id"], :name => "time_entries_project_id"
|
|
|
|
add_index "time_entries", ["project_id"], :name => "time_entries_project_id"
|
|
|
|
add_index "time_entries", ["user_id"], :name => "index_time_entries_on_user_id"
|
|
|
|
add_index "time_entries", ["user_id"], :name => "index_time_entries_on_user_id"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
create_table "tmp", :force => true do |t|
|
|
|
|
|
|
|
|
t.string "name"
|
|
|
|
|
|
|
|
t.string "part_number"
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
create_table "tokens", :force => true do |t|
|
|
|
|
create_table "tokens", :force => true do |t|
|
|
|
|
t.integer "user_id", :default => 0, :null => false
|
|
|
|
t.integer "user_id", :default => 0, :null => false
|
|
|
|
t.string "action", :limit => 30, :default => "", :null => false
|
|
|
|
t.string "action", :limit => 30, :default => "", :null => false
|
|
|
@ -813,6 +818,19 @@ ActiveRecord::Schema.define(:version => 20140421044830) do
|
|
|
|
|
|
|
|
|
|
|
|
add_index "user_preferences", ["user_id"], :name => "index_user_preferences_on_user_id"
|
|
|
|
add_index "user_preferences", ["user_id"], :name => "index_user_preferences_on_user_id"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
create_table "user_scores", :force => true do |t|
|
|
|
|
|
|
|
|
t.integer "user_id", :null => false
|
|
|
|
|
|
|
|
t.integer "collaboration"
|
|
|
|
|
|
|
|
t.integer "influence"
|
|
|
|
|
|
|
|
t.integer "skill"
|
|
|
|
|
|
|
|
t.integer "active"
|
|
|
|
|
|
|
|
t.datetime "created_at", :null => false
|
|
|
|
|
|
|
|
t.datetime "updated_at", :null => false
|
|
|
|
|
|
|
|
t.integer "level"
|
|
|
|
|
|
|
|
t.integer "file"
|
|
|
|
|
|
|
|
t.integer "issue"
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
create_table "user_statuses", :force => true do |t|
|
|
|
|
create_table "user_statuses", :force => true do |t|
|
|
|
|
t.integer "changesets_count"
|
|
|
|
t.integer "changesets_count"
|
|
|
|
t.integer "watchers_count"
|
|
|
|
t.integer "watchers_count"
|
|
|
@ -947,4 +965,10 @@ ActiveRecord::Schema.define(:version => 20140421044830) do
|
|
|
|
add_index "workflows", ["role_id", "tracker_id", "old_status_id"], :name => "wkfs_role_tracker_old_status"
|
|
|
|
add_index "workflows", ["role_id", "tracker_id", "old_status_id"], :name => "wkfs_role_tracker_old_status"
|
|
|
|
add_index "workflows", ["role_id"], :name => "index_workflows_on_role_id"
|
|
|
|
add_index "workflows", ["role_id"], :name => "index_workflows_on_role_id"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
create_table "yans", :force => true do |t|
|
|
|
|
|
|
|
|
t.string "name"
|
|
|
|
|
|
|
|
t.datetime "created_at", :null => false
|
|
|
|
|
|
|
|
t.datetime "updated_at", :null => false
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|