Schema improvements suggested by Yorick

This commit is contained in:
Jacob Vosmaer 2016-04-13 17:07:12 +02:00
parent 0f602be99f
commit bf31b4495e
2 changed files with 5 additions and 2 deletions

View file

@ -1,6 +1,8 @@
class ProjectAddRepositoryCheck < ActiveRecord::Migration
def change
add_column :projects, :last_repository_check_failed, :boolean, default: false
add_column :projects, :last_repository_check_failed, :boolean
add_index :projects, :last_repository_check_failed
add_column :projects, :last_repository_check_at, :datetime
end
end

View file

@ -732,7 +732,7 @@ ActiveRecord::Schema.define(version: 20160412140240) do
t.boolean "public_builds", default: true, null: false
t.string "main_language"
t.integer "pushes_since_gc", default: 0
t.boolean "last_repository_check_failed", default: false
t.boolean "last_repository_check_failed"
t.datetime "last_repository_check_at"
end
@ -743,6 +743,7 @@ ActiveRecord::Schema.define(version: 20160412140240) do
add_index "projects", ["creator_id"], name: "index_projects_on_creator_id", using: :btree
add_index "projects", ["description"], name: "index_projects_on_description_trigram", using: :gin, opclasses: {"description"=>"gin_trgm_ops"}
add_index "projects", ["last_activity_at"], name: "index_projects_on_last_activity_at", using: :btree
add_index "projects", ["last_repository_check_failed"], name: "index_projects_on_last_repository_check_failed", using: :btree
add_index "projects", ["name"], name: "index_projects_on_name_trigram", using: :gin, opclasses: {"name"=>"gin_trgm_ops"}
add_index "projects", ["namespace_id"], name: "index_projects_on_namespace_id", using: :btree
add_index "projects", ["path"], name: "index_projects_on_path", using: :btree