Update schema.rb file

This commit is contained in:
Oleksii Kriuchykhin 2019-04-17 14:57:38 +02:00
parent b4cf665c21
commit 4014f19665

View file

@ -306,6 +306,7 @@ ActiveRecord::Schema.define(version: 20190410110605) do
t.datetime "restored_on"
t.string "experiments_order"
t.boolean "template"
t.boolean "demo", default: false, null: false
t.index "trim_html_tags((name)::text) gin_trgm_ops", name: "index_projects_on_name", using: :gin
t.index ["archived_by_id"], name: "index_projects_on_archived_by_id"
t.index ["created_by_id"], name: "index_projects_on_created_by_id"
@ -804,6 +805,7 @@ ActiveRecord::Schema.define(version: 20190410110605) do
t.bigint "assigned_by_id"
t.index ["assigned_by_id"], name: "index_user_projects_on_assigned_by_id"
t.index ["project_id"], name: "index_user_projects_on_project_id"
t.index ["user_id", "project_id"], name: "index_user_projects_on_user_id_and_project_id", unique: true
t.index ["user_id"], name: "index_user_projects_on_user_id"
end
@ -829,6 +831,7 @@ ActiveRecord::Schema.define(version: 20190410110605) do
t.bigint "assigned_by_id"
t.index ["assigned_by_id"], name: "index_user_teams_on_assigned_by_id"
t.index ["team_id"], name: "index_user_teams_on_team_id"
t.index ["user_id", "team_id"], name: "index_user_teams_on_user_id_and_team_id", unique: true
t.index ["user_id"], name: "index_user_teams_on_user_id"
end