Update schema_plus gem

This commit is contained in:
Vokhmin Alexey V 2015-06-05 21:08:39 +03:00
parent d8a3797112
commit 498aeb9777
3 changed files with 220 additions and 238 deletions

View File

@ -4,7 +4,7 @@ gem 'rails'
gem 'activeadmin', github: 'activeadmin'
gem 'pg'
gem 'schema_plus', '~> 1.5'
gem 'schema_plus'
########
gem 'devise'
gem 'omniauth'

View File

@ -249,6 +249,7 @@ GEM
has_scope (~> 0.6.0.rc)
railties (>= 3.2, < 5)
responders
its-it (1.1.1)
jbuilder (2.2.16)
activesupport (>= 3.0.0, < 5)
multi_json (~> 1.2)
@ -266,6 +267,7 @@ GEM
kaminari (0.16.3)
actionpack (>= 3.0.0)
activesupport (>= 3.0.0)
key_struct (0.4.2)
libv8 (3.16.14.7)
localeapp (0.9.3)
gli
@ -296,6 +298,9 @@ GEM
mini_portile (0.6.2)
minitest (5.7.0)
mock_redis (0.14.1)
modware (0.1.2)
its-it
key_struct (~> 0.4)
momentjs-rails (2.10.2)
railties (>= 3.1)
mono_logger (1.1.0)
@ -497,9 +502,58 @@ GEM
sprockets (>= 2.8, < 4.0)
sprockets-rails (>= 2.0, < 4.0)
tilt (~> 1.1)
schema_plus (1.8.7)
activerecord (>= 3.2, < 4.3)
schema_auto_foreign_keys (0.1.0)
schema_plus_foreign_keys (~> 0.1)
schema_plus_indexes (~> 0.2)
schema_monkey (2.1.0)
activerecord (~> 4.2)
its-it
modware (~> 0.1)
schema_plus (2.0.0)
activerecord (~> 4.2)
schema_auto_foreign_keys (~> 0.1)
schema_monkey (~> 2.1)
schema_plus_columns (~> 0.1)
schema_plus_core (~> 0.4)
schema_plus_db_default (~> 0.1)
schema_plus_default_expr (~> 0.1)
schema_plus_enums (~> 0.1)
schema_plus_foreign_keys (~> 0.1)
schema_plus_indexes (~> 0.1, >= 0.1.3)
schema_plus_pg_indexes (~> 0.1, >= 0.1.3)
schema_plus_tables (~> 0.1)
schema_plus_views (~> 0.1)
schema_plus_columns (0.1.0)
activerecord (~> 4.2)
schema_plus_indexes (~> 0.1)
schema_plus_core (0.5.0)
activerecord (~> 4.2)
schema_monkey (~> 2.1)
schema_plus_db_default (0.1.0)
activerecord (~> 4.2)
schema_plus_core (~> 0.2, >= 0.2.1)
schema_plus_default_expr (0.1.0)
activerecord (~> 4.2)
schema_plus_core (~> 0.2, >= 0.2.1)
schema_plus_enums (0.1.0)
activerecord (~> 4.2)
schema_plus_core (~> 0.2, >= 0.2.1)
schema_plus_foreign_keys (0.1.2)
activerecord (~> 4.2)
schema_plus_core (~> 0.5)
valuable
schema_plus_indexes (0.2.0)
activerecord (~> 4.2)
schema_plus_core (~> 0.1)
schema_plus_pg_indexes (0.1.4)
activerecord (~> 4.2)
schema_plus_indexes (~> 0.1, >= 0.1.3)
schema_plus_tables (0.1.0)
activerecord (~> 4.2)
schema_plus_core (~> 0.2)
schema_plus_views (0.2.0)
activerecord (~> 4.2)
schema_plus_core (~> 0.1)
scrivener (0.0.3)
sexp_processor (4.6.0)
shotgun (0.9.1)
@ -681,7 +735,7 @@ DEPENDENCIES
russian
rvm-capistrano
sass-rails
schema_plus (~> 1.5)
schema_plus
shotgun
shoulda
shoulda-matchers

View File

@ -17,107 +17,88 @@ ActiveRecord::Schema.define(version: 20150601043133) do
enable_extension "plpgsql"
enable_extension "hstore"
create_table "activity_feeds", force: true do |t|
t.integer "user_id", null: false
create_table "activity_feeds", force: :cascade do |t|
t.integer "user_id", null: false, index: {name: "index_activity_feeds_on_user_id_and_kind", with: ["kind"]}
t.string "kind"
t.text "data"
t.datetime "created_at"
t.datetime "updated_at"
t.string "project_owner"
t.string "project_name"
t.integer "creator_id"
t.index ["creator_id"], :name => "index_activity_feeds_on_creator_id"
t.index ["project_name"], :name => "index_activity_feeds_on_project_name"
t.index ["project_owner"], :name => "index_activity_feeds_on_project_owner"
t.index ["user_id", "kind"], :name => "index_activity_feeds_on_user_id_and_kind"
t.string "project_owner", index: {name: "index_activity_feeds_on_project_owner"}
t.string "project_name", index: {name: "index_activity_feeds_on_project_name"}
t.integer "creator_id", index: {name: "index_activity_feeds_on_creator_id"}
end
create_table "advisories", force: true do |t|
t.string "advisory_id"
create_table "advisories", force: :cascade do |t|
t.string "advisory_id", index: {name: "index_advisories_on_advisory_id", unique: true}
t.text "description", default: ""
t.text "references", default: ""
t.text "update_type", default: ""
t.text "update_type", default: "", index: {name: "index_advisories_on_update_type"}
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["advisory_id"], :name => "index_advisories_on_advisory_id", :unique => true
t.index ["update_type"], :name => "index_advisories_on_update_type"
end
create_table "advisories_platforms", id: false, force: true do |t|
t.integer "advisory_id"
t.integer "platform_id"
t.index ["advisory_id", "platform_id"], :name => "advisory_platform_index", :unique => true
t.index ["advisory_id"], :name => "index_advisories_platforms_on_advisory_id"
t.index ["platform_id"], :name => "index_advisories_platforms_on_platform_id"
create_table "advisories_platforms", id: false, force: :cascade do |t|
t.integer "advisory_id", index: {name: "index_advisories_platforms_on_advisory_id"}
t.integer "platform_id", index: {name: "index_advisories_platforms_on_platform_id"}
end
add_index "advisories_platforms", ["advisory_id", "platform_id"], name: "advisory_platform_index", unique: true
create_table "advisories_projects", id: false, force: true do |t|
t.integer "advisory_id"
t.integer "project_id"
t.index ["advisory_id", "project_id"], :name => "advisory_project_index", :unique => true
t.index ["advisory_id"], :name => "index_advisories_projects_on_advisory_id"
t.index ["project_id"], :name => "index_advisories_projects_on_project_id"
create_table "advisories_projects", id: false, force: :cascade do |t|
t.integer "advisory_id", index: {name: "index_advisories_projects_on_advisory_id"}
t.integer "project_id", index: {name: "index_advisories_projects_on_project_id"}
end
add_index "advisories_projects", ["advisory_id", "project_id"], name: "advisory_project_index", unique: true
create_table "arches", force: true do |t|
t.string "name", null: false
create_table "arches", force: :cascade do |t|
t.string "name", null: false, index: {name: "index_arches_on_name", unique: true}
t.datetime "created_at"
t.datetime "updated_at"
t.index ["name"], :name => "index_arches_on_name", :unique => true
end
create_table "authentications", force: true do |t|
t.integer "user_id"
t.string "provider"
create_table "authentications", force: :cascade do |t|
t.integer "user_id", index: {name: "index_authentications_on_user_id"}
t.string "provider", index: {name: "index_authentications_on_provider_and_uid", with: ["uid"], unique: true}
t.string "uid"
t.datetime "created_at"
t.datetime "updated_at"
t.index ["provider", "uid"], :name => "index_authentications_on_provider_and_uid", :unique => true
t.index ["user_id"], :name => "index_authentications_on_user_id"
end
create_table "build_list_items", force: true do |t|
create_table "build_list_items", force: :cascade do |t|
t.string "name"
t.integer "level"
t.integer "status"
t.integer "build_list_id"
t.integer "build_list_id", index: {name: "index_build_list_items_on_build_list_id"}
t.datetime "created_at"
t.datetime "updated_at"
t.string "version"
t.index ["build_list_id"], :name => "index_build_list_items_on_build_list_id"
end
create_table "build_list_packages", force: true do |t|
t.integer "build_list_id"
t.integer "project_id"
t.integer "platform_id"
create_table "build_list_packages", force: :cascade do |t|
t.integer "build_list_id", index: {name: "index_build_list_packages_on_build_list_id"}
t.integer "project_id", index: {name: "index_build_list_packages_on_project_id"}
t.integer "platform_id", index: {name: "index_build_list_packages_on_platform_id"}
t.string "fullname"
t.string "name"
t.string "name", index: {name: "index_build_list_packages_on_name_and_project_id", with: ["project_id"]}
t.string "version"
t.string "release"
t.string "package_type"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.boolean "actual", default: false
t.boolean "actual", default: false, index: {name: "index_build_list_packages_on_actual_and_platform_id", with: ["platform_id"]}
t.string "sha1"
t.integer "epoch"
t.text "dependent_packages"
t.index :name => "build_list_packages_ordering", :expression => "lower((name)::text), length((name)::text)"
t.index ["actual", "platform_id"], :name => "index_build_list_packages_on_actual_and_platform_id"
t.index ["build_list_id"], :name => "index_build_list_packages_on_build_list_id"
t.index ["name", "project_id"], :name => "index_build_list_packages_on_name_and_project_id"
t.index ["platform_id"], :name => "index_build_list_packages_on_platform_id"
t.index ["project_id"], :name => "index_build_list_packages_on_project_id"
t.index name: "build_list_packages_ordering", expression: "lower((name)::text), length((name)::text)"
end
create_table "build_lists", force: true do |t|
create_table "build_lists", force: :cascade do |t|
t.integer "status"
t.string "project_version"
t.integer "project_id"
t.integer "arch_id"
t.integer "project_id", index: {name: "index_build_lists_on_project_id"}
t.integer "arch_id", index: {name: "index_build_lists_on_arch_id"}
t.datetime "notified_at"
t.datetime "created_at"
t.datetime "updated_at"
t.datetime "updated_at", index: {name: "index_build_lists_on_updated_at", order: {"updated_at"=>:desc}}
t.boolean "is_circle", default: false
t.text "additional_repos"
t.string "name"
@ -125,14 +106,14 @@ ActiveRecord::Schema.define(version: 20150601043133) do
t.integer "build_for_platform_id"
t.integer "save_to_platform_id"
t.text "include_repos"
t.integer "user_id"
t.integer "user_id", index: {name: "index_build_lists_on_user_id"}
t.string "package_version"
t.string "commit_hash"
t.integer "priority", default: 0, null: false
t.datetime "started_at"
t.integer "duration"
t.integer "advisory_id"
t.integer "mass_build_id"
t.integer "advisory_id", index: {name: "index_build_lists_on_advisory_id"}
t.integer "mass_build_id", index: {name: "index_build_lists_on_mass_build_id_and_status", with: ["status"]}
t.integer "save_to_repository_id"
t.text "results"
t.boolean "new_core", default: true
@ -151,17 +132,11 @@ ActiveRecord::Schema.define(version: 20150601043133) do
t.boolean "use_cached_chroot", default: false, null: false
t.boolean "use_extra_tests", default: true, null: false
t.boolean "save_buildroot", default: false, null: false
t.index ["advisory_id"], :name => "index_build_lists_on_advisory_id"
t.index ["arch_id"], :name => "index_build_lists_on_arch_id"
t.index ["mass_build_id", "status"], :name => "index_build_lists_on_mass_build_id_and_status"
t.index ["project_id", "save_to_repository_id", "build_for_platform_id", "arch_id"], :name => "maintainer_search_index"
t.index ["project_id"], :name => "index_build_lists_on_project_id"
t.index ["updated_at"], :name => "index_build_lists_on_updated_at", :order => {"updated_at" => :desc}
t.index ["user_id"], :name => "index_build_lists_on_user_id"
end
add_index "build_lists", ["project_id", "save_to_repository_id", "build_for_platform_id", "arch_id"], name: "maintainer_search_index"
create_table "projects", force: true do |t|
t.string "name"
create_table "projects", force: :cascade do |t|
t.string "name", index: {name: "index_projects_on_name_and_owner_id_and_owner_type", with: ["owner_id", "owner_type"], unique: true, case_sensitive: false}
t.datetime "created_at"
t.datetime "updated_at"
t.integer "owner_id"
@ -182,44 +157,35 @@ ActiveRecord::Schema.define(version: 20150601043133) do
t.string "owner_uname", null: false
t.boolean "architecture_dependent", default: false, null: false
t.integer "autostart_status"
t.integer "alias_from_id"
t.index ["alias_from_id"], :name => "index_projects_on_alias_from_id"
t.index ["name", "owner_id", "owner_type"], :name => "index_projects_on_name_and_owner_id_and_owner_type", :unique => true, :case_sensitive => false
t.integer "alias_from_id", index: {name: "index_projects_on_alias_from_id"}
end
create_table "build_scripts", force: true do |t|
t.integer "project_id", null: false
create_table "build_scripts", force: :cascade do |t|
t.integer "project_id", null: false, index: {name: "fk__build_scripts_project_id"}, foreign_key: {references: "projects", name: "fk_build_scripts_project_id", on_update: :no_action, on_delete: :no_action}
t.string "treeish", null: false
t.string "commit"
t.string "sha1"
t.string "status"
t.datetime "created_at"
t.datetime "updated_at"
t.index ["project_id", "treeish"], :name => "index_build_scripts_on_project_id_and_treeish", :unique => true
t.index ["project_id"], :name => "fk__build_scripts_project_id"
t.foreign_key ["project_id"], "projects", ["id"], :on_update => :no_action, :on_delete => :no_action, :name => "fk_build_scripts_project_id"
end
add_index "build_scripts", ["project_id", "treeish"], name: "index_build_scripts_on_project_id_and_treeish", unique: true
create_table "comments", force: true do |t|
t.string "commentable_type"
create_table "comments", force: :cascade do |t|
t.string "commentable_type", index: {name: "index_comments_on_commentable_type"}
t.integer "user_id"
t.text "body"
t.datetime "created_at"
t.datetime "updated_at"
t.decimal "commentable_id", precision: 50, scale: 0
t.decimal "commentable_id", precision: 50, index: {name: "index_comments_on_commentable_id"}
t.integer "project_id"
t.text "data"
t.boolean "automatic", default: false
t.decimal "created_from_commit_hash", precision: 50, scale: 0
t.integer "created_from_issue_id"
t.index ["automatic"], :name => "index_comments_on_automatic"
t.index ["commentable_id"], :name => "index_comments_on_commentable_id"
t.index ["commentable_type"], :name => "index_comments_on_commentable_type"
t.index ["created_from_commit_hash"], :name => "index_comments_on_created_from_commit_hash"
t.index ["created_from_issue_id"], :name => "index_comments_on_created_from_issue_id"
t.boolean "automatic", default: false, index: {name: "index_comments_on_automatic"}
t.decimal "created_from_commit_hash", precision: 50, index: {name: "index_comments_on_created_from_commit_hash"}
t.integer "created_from_issue_id", index: {name: "index_comments_on_created_from_issue_id"}
end
create_table "event_logs", force: true do |t|
create_table "event_logs", force: :cascade do |t|
t.integer "user_id"
t.string "user_name"
t.integer "eventable_id"
@ -235,7 +201,7 @@ ActiveRecord::Schema.define(version: 20150601043133) do
t.datetime "updated_at"
end
create_table "flash_notifies", force: true do |t|
create_table "flash_notifies", force: :cascade do |t|
t.text "body_ru", null: false
t.text "body_en", null: false
t.string "status", null: false
@ -244,7 +210,7 @@ ActiveRecord::Schema.define(version: 20150601043133) do
t.datetime "updated_at", null: false
end
create_table "groups", force: true do |t|
create_table "groups", force: :cascade do |t|
t.integer "owner_id"
t.datetime "created_at"
t.datetime "updated_at"
@ -258,7 +224,7 @@ ActiveRecord::Schema.define(version: 20150601043133) do
t.string "default_branch"
end
create_table "hooks", force: true do |t|
create_table "hooks", force: :cascade do |t|
t.text "data"
t.integer "project_id"
t.string "name"
@ -266,61 +232,55 @@ ActiveRecord::Schema.define(version: 20150601043133) do
t.datetime "updated_at", null: false
end
create_table "issues", force: true do |t|
create_table "issues", force: :cascade do |t|
t.integer "serial_id"
t.integer "project_id"
t.integer "project_id", index: {name: "index_issues_on_project_id_and_serial_id", with: ["serial_id"], unique: true}
t.integer "assignee_id"
t.string "title"
t.text "body"
t.string "status", default: "open"
t.datetime "created_at"
t.datetime "updated_at"
t.integer "user_id"
t.integer "user_id", index: {name: "index_issues_on_user_id"}
t.datetime "closed_at"
t.integer "closed_by"
t.index ["project_id", "serial_id"], :name => "index_issues_on_project_id_and_serial_id", :unique => true
t.index ["user_id"], :name => "index_issues_on_user_id"
end
create_table "key_pairs", force: true do |t|
create_table "key_pairs", force: :cascade do |t|
t.text "public", null: false
t.text "encrypted_secret", null: false
t.string "key_id", null: false
t.integer "user_id", null: false
t.integer "repository_id", null: false
t.integer "repository_id", null: false, index: {name: "index_key_pairs_on_repository_id", unique: true}
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["repository_id"], :name => "index_key_pairs_on_repository_id", :unique => true
end
create_table "key_pairs_backup", force: true do |t|
t.integer "repository_id", null: false
create_table "key_pairs_backup", force: :cascade do |t|
t.integer "repository_id", null: false, index: {name: "index_key_pairs_backup_on_repository_id", unique: true}
t.integer "user_id", null: false
t.string "key_id", null: false
t.text "public", null: false
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["repository_id"], :name => "index_key_pairs_backup_on_repository_id", :unique => true
end
create_table "labelings", force: true do |t|
create_table "labelings", force: :cascade do |t|
t.integer "label_id", null: false
t.integer "issue_id"
t.integer "issue_id", index: {name: "index_labelings_on_issue_id"}
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["issue_id"], :name => "index_labelings_on_issue_id"
end
create_table "labels", force: true do |t|
create_table "labels", force: :cascade do |t|
t.string "name", null: false
t.string "color", null: false
t.integer "project_id"
t.integer "project_id", index: {name: "index_labels_on_project_id"}
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["project_id"], :name => "index_labels_on_project_id"
end
create_table "mass_builds", force: true do |t|
create_table "mass_builds", force: :cascade do |t|
t.integer "build_for_platform_id", null: false
t.string "name"
t.datetime "created_at", null: false
@ -348,17 +308,17 @@ ActiveRecord::Schema.define(version: 20150601043133) do
t.string "external_nodes"
end
create_table "users", force: true do |t|
create_table "users", force: :cascade do |t|
t.string "name"
t.string "email", default: "", null: false
t.string "email", default: "", null: false, index: {name: "index_users_on_email", unique: true}
t.string "encrypted_password", limit: 128, default: "", null: false
t.string "reset_password_token"
t.string "reset_password_token", index: {name: "index_users_on_reset_password_token", unique: true}
t.datetime "reset_password_sent_at"
t.datetime "remember_created_at"
t.datetime "created_at"
t.datetime "updated_at"
t.text "ssh_key"
t.string "uname"
t.string "uname", index: {name: "index_users_on_uname", unique: true}
t.string "role"
t.string "language", default: "en"
t.integer "own_projects_count", default: 0, null: false
@ -371,47 +331,38 @@ ActiveRecord::Schema.define(version: 20150601043133) do
t.integer "avatar_file_size"
t.datetime "avatar_updated_at"
t.integer "failed_attempts", default: 0
t.string "unlock_token"
t.string "unlock_token", index: {name: "index_users_on_unlock_token", unique: true}
t.datetime "locked_at"
t.string "confirmation_token"
t.string "confirmation_token", index: {name: "index_users_on_confirmation_token", unique: true}
t.datetime "confirmed_at"
t.datetime "confirmation_sent_at"
t.string "authentication_token"
t.string "authentication_token", index: {name: "index_users_on_authentication_token"}
t.integer "build_priority", default: 50
t.boolean "sound_notifications", default: true
t.boolean "hide_email", default: true, null: false
t.index ["authentication_token"], :name => "index_users_on_authentication_token"
t.index ["confirmation_token"], :name => "index_users_on_confirmation_token", :unique => true
t.index ["email"], :name => "index_users_on_email", :unique => true
t.index ["reset_password_token"], :name => "index_users_on_reset_password_token", :unique => true
t.index ["uname"], :name => "index_users_on_uname", :unique => true
t.index ["unlock_token"], :name => "index_users_on_unlock_token", :unique => true
end
create_table "node_instructions", force: true do |t|
t.integer "user_id", null: false
create_table "node_instructions", force: :cascade do |t|
t.integer "user_id", null: false, index: {name: "fk__node_instructions_user_id"}, foreign_key: {references: "users", name: "fk_node_instructions_user_id", on_update: :no_action, on_delete: :no_action}
t.text "encrypted_instruction", null: false
t.text "output"
t.string "status"
t.datetime "created_at"
t.datetime "updated_at"
t.index ["user_id"], :name => "fk__node_instructions_user_id"
t.foreign_key ["user_id"], "users", ["id"], :on_update => :no_action, :on_delete => :no_action, :name => "fk_node_instructions_user_id"
end
create_table "platform_arch_settings", force: true do |t|
t.integer "platform_id", null: false
create_table "platform_arch_settings", force: :cascade do |t|
t.integer "platform_id", null: false, index: {name: "index_platform_arch_settings_on_platform_id_and_arch_id", with: ["arch_id"], unique: true}
t.integer "arch_id", null: false
t.integer "time_living", null: false
t.boolean "default"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["platform_id", "arch_id"], :name => "index_platform_arch_settings_on_platform_id_and_arch_id", :unique => true
end
create_table "platforms", force: true do |t|
create_table "platforms", force: :cascade do |t|
t.string "description"
t.string "name", null: false
t.string "name", null: false, index: {name: "index_platforms_on_name", unique: true, case_sensitive: false}
t.integer "parent_platform_id"
t.datetime "created_at"
t.datetime "updated_at"
@ -427,11 +378,10 @@ ActiveRecord::Schema.define(version: 20150601043133) do
t.string "last_regenerated_log_sha1"
t.string "automatic_metadata_regeneration"
t.string "default_branch", null: false
t.index ["name"], :name => "index_platforms_on_name", :unique => true, :case_sensitive => false
end
create_table "product_build_lists", force: true do |t|
t.integer "product_id"
create_table "product_build_lists", force: :cascade do |t|
t.integer "product_id", index: {name: "index_product_build_lists_on_product_id"}
t.integer "status", null: false
t.datetime "created_at"
t.datetime "updated_at"
@ -446,10 +396,9 @@ ActiveRecord::Schema.define(version: 20150601043133) do
t.integer "user_id"
t.boolean "not_delete", default: false
t.boolean "autostarted", default: false
t.index ["product_id"], :name => "index_product_build_lists_on_product_id"
end
create_table "products", force: true do |t|
create_table "products", force: :cascade do |t|
t.string "name", null: false
t.integer "platform_id", null: false
t.datetime "created_at"
@ -463,28 +412,26 @@ ActiveRecord::Schema.define(version: 20150601043133) do
t.string "project_version"
end
create_table "project_imports", force: true do |t|
create_table "project_imports", force: :cascade do |t|
t.integer "project_id"
t.string "name"
t.string "name", index: {name: "index_project_imports_on_name_and_platform_id", with: ["platform_id"], unique: true, case_sensitive: false}
t.string "version"
t.datetime "file_mtime"
t.datetime "created_at"
t.datetime "updated_at"
t.integer "platform_id"
t.index ["name", "platform_id"], :name => "index_project_imports_on_name_and_platform_id", :unique => true, :case_sensitive => false
end
create_table "project_statistics", force: true do |t|
create_table "project_statistics", force: :cascade do |t|
t.integer "average_build_time", default: 0, null: false
t.integer "build_count", default: 0, null: false
t.integer "arch_id", null: false
t.integer "project_id", null: false
t.integer "project_id", null: false, index: {name: "index_project_statistics_on_project_id_and_arch_id", with: ["arch_id"], unique: true}
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["project_id", "arch_id"], :name => "index_project_statistics_on_project_id_and_arch_id", :unique => true
end
create_table "project_tags", force: true do |t|
create_table "project_tags", force: :cascade do |t|
t.integer "project_id"
t.string "commit_id"
t.string "sha1"
@ -494,32 +441,28 @@ ActiveRecord::Schema.define(version: 20150601043133) do
t.datetime "updated_at", null: false
end
create_table "project_to_repositories", force: true do |t|
create_table "project_to_repositories", force: :cascade do |t|
t.integer "project_id"
t.integer "repository_id"
t.integer "repository_id", index: {name: "index_project_to_repositories_on_repository_id_and_project_id", with: ["project_id"], unique: true}
t.datetime "created_at"
t.datetime "updated_at"
t.hstore "autostart_options"
t.index ["repository_id", "project_id"], :name => "index_project_to_repositories_on_repository_id_and_project_id", :unique => true
end
create_table "pull_requests", force: true do |t|
t.integer "issue_id", null: false
t.integer "to_project_id", null: false
t.integer "from_project_id", null: false
create_table "pull_requests", force: :cascade do |t|
t.integer "issue_id", null: false, index: {name: "index_pull_requests_on_issue_id"}
t.integer "to_project_id", null: false, index: {name: "index_pull_requests_on_base_project_id"}
t.integer "from_project_id", null: false, index: {name: "index_pull_requests_on_head_project_id"}
t.string "to_ref", null: false
t.string "from_ref", null: false
t.string "from_project_owner_uname"
t.string "from_project_name"
t.index ["from_project_id"], :name => "index_pull_requests_on_head_project_id"
t.index ["issue_id"], :name => "index_pull_requests_on_issue_id"
t.index ["to_project_id"], :name => "index_pull_requests_on_base_project_id"
end
create_table "register_requests", force: true do |t|
create_table "register_requests", force: :cascade do |t|
t.string "name"
t.string "email"
t.string "token"
t.string "email", index: {name: "index_register_requests_on_email", unique: true, case_sensitive: false}
t.string "token", index: {name: "index_register_requests_on_token", unique: true, case_sensitive: false}
t.boolean "approved", default: false
t.boolean "rejected", default: false
t.datetime "created_at"
@ -527,36 +470,31 @@ ActiveRecord::Schema.define(version: 20150601043133) do
t.string "interest"
t.text "more"
t.string "language"
t.index ["email"], :name => "index_register_requests_on_email", :unique => true, :case_sensitive => false
t.index ["token"], :name => "index_register_requests_on_token", :unique => true, :case_sensitive => false
end
create_table "relations", force: true do |t|
create_table "relations", force: :cascade do |t|
t.integer "actor_id"
t.string "actor_type"
t.string "actor_type", index: {name: "index_relations_on_actor_type_and_actor_id", with: ["actor_id"]}
t.integer "target_id"
t.string "target_type"
t.string "target_type", index: {name: "index_relations_on_target_type_and_target_id", with: ["target_id"]}
t.datetime "created_at"
t.datetime "updated_at"
t.string "role"
t.index ["actor_type", "actor_id"], :name => "index_relations_on_actor_type_and_actor_id"
t.index ["target_type", "target_id"], :name => "index_relations_on_target_type_and_target_id"
end
create_table "repositories", force: true do |t|
create_table "repositories", force: :cascade do |t|
t.string "description", null: false
t.integer "platform_id", null: false
t.integer "platform_id", null: false, index: {name: "index_repositories_on_platform_id"}
t.datetime "created_at"
t.datetime "updated_at"
t.string "name", null: false
t.boolean "publish_without_qa", default: true
t.boolean "synchronizing_publications", default: false, null: false
t.string "publish_builds_only_from_branch"
t.index ["platform_id"], :name => "index_repositories_on_platform_id"
end
create_table "repository_statuses", force: true do |t|
t.integer "repository_id", null: false
create_table "repository_statuses", force: :cascade do |t|
t.integer "repository_id", null: false, index: {name: "index_repository_statuses_on_repository_id_and_platform_id", with: ["platform_id"], unique: true}
t.integer "platform_id", null: false
t.integer "status", default: 0
t.datetime "last_regenerated_at"
@ -564,10 +502,9 @@ ActiveRecord::Schema.define(version: 20150601043133) do
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.string "last_regenerated_log_sha1"
t.index ["repository_id", "platform_id"], :name => "index_repository_statuses_on_repository_id_and_platform_id", :unique => true
end
create_table "settings_notifiers", force: true do |t|
create_table "settings_notifiers", force: :cascade do |t|
t.integer "user_id", null: false
t.boolean "can_notify", default: true
t.boolean "new_comment", default: true
@ -584,66 +521,57 @@ ActiveRecord::Schema.define(version: 20150601043133) do
t.boolean "update_code", default: false
end
create_table "ssh_keys", force: true do |t|
create_table "ssh_keys", force: :cascade do |t|
t.string "name"
t.text "key", null: false
t.string "fingerprint", null: false
t.integer "user_id", null: false
t.string "fingerprint", null: false, index: {name: "index_ssh_keys_on_fingerprint", unique: true}
t.integer "user_id", null: false, index: {name: "index_ssh_keys_on_user_id"}
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["fingerprint"], :name => "index_ssh_keys_on_fingerprint", :unique => true
t.index ["user_id"], :name => "index_ssh_keys_on_user_id"
end
create_table "statistics", force: true do |t|
t.integer "user_id", null: false
create_table "statistics", force: :cascade do |t|
t.integer "user_id", null: false, index: {name: "index_statistics_on_user_id"}
t.string "email", null: false
t.integer "project_id", null: false
t.integer "project_id", null: false, index: {name: "index_statistics_on_project_id"}
t.string "project_name_with_owner", null: false
t.string "key", null: false
t.string "key", null: false, index: {name: "index_statistics_on_key"}
t.integer "counter", default: 0, null: false
t.datetime "activity_at", null: false
t.datetime "activity_at", null: false, index: {name: "index_statistics_on_activity_at"}
t.datetime "created_at"
t.datetime "updated_at"
t.index ["activity_at"], :name => "index_statistics_on_activity_at"
t.index ["key", "activity_at"], :name => "index_statistics_on_key_and_activity_at"
t.index ["key"], :name => "index_statistics_on_key"
t.index ["project_id", "key", "activity_at"], :name => "index_statistics_on_project_id_and_key_and_activity_at"
t.index ["project_id"], :name => "index_statistics_on_project_id"
t.index ["user_id", "key", "activity_at"], :name => "index_statistics_on_user_id_and_key_and_activity_at"
t.index ["user_id", "project_id", "key", "activity_at"], :name => "index_statistics_on_all_keys", :unique => true
t.index ["user_id"], :name => "index_statistics_on_user_id"
end
add_index "statistics", ["key", "activity_at"], name: "index_statistics_on_key_and_activity_at"
add_index "statistics", ["project_id", "key", "activity_at"], name: "index_statistics_on_project_id_and_key_and_activity_at"
add_index "statistics", ["user_id", "key", "activity_at"], name: "index_statistics_on_user_id_and_key_and_activity_at"
add_index "statistics", ["user_id", "project_id", "key", "activity_at"], name: "index_statistics_on_all_keys", unique: true
create_table "subscribes", force: true do |t|
create_table "subscribes", force: :cascade do |t|
t.string "subscribeable_type"
t.integer "user_id"
t.datetime "created_at"
t.datetime "updated_at"
t.boolean "status", default: true
t.integer "project_id"
t.decimal "subscribeable_id", precision: 50, scale: 0
t.decimal "subscribeable_id", precision: 50
end
create_table "tokens", force: true do |t|
t.integer "subject_id", null: false
create_table "tokens", force: :cascade do |t|
t.integer "subject_id", null: false, index: {name: "index_tokens_on_subject_id_and_subject_type", with: ["subject_type"]}
t.string "subject_type", null: false
t.integer "creator_id", null: false
t.integer "updater_id"
t.string "status", default: "active"
t.text "description"
t.string "authentication_token", null: false
t.string "authentication_token", null: false, index: {name: "index_tokens_on_authentication_token", unique: true}
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["authentication_token"], :name => "index_tokens_on_authentication_token", :unique => true
t.index ["subject_id", "subject_type"], :name => "index_tokens_on_subject_id_and_subject_type"
end
create_table "user_builds_settings", force: true do |t|
t.integer "user_id", null: false
create_table "user_builds_settings", force: :cascade do |t|
t.integer "user_id", null: false, index: {name: "index_user_builds_settings_on_user_id", unique: true}
t.text "platforms", default: [], null: false, array: true
t.string "external_nodes"
t.index ["user_id"], :name => "index_user_builds_settings_on_user_id", :unique => true
end
end