1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-01-18 07:52:23 +01:00

update schema.rb

This commit is contained in:
Nicolas Florentin 2016-05-17 10:47:59 +02:00
parent 9e41d2d050
commit ff20b4c5d3

View File

@ -12,7 +12,6 @@
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20160526102307) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@ -267,6 +266,24 @@ ActiveRecord::Schema.define(version: 20160526102307) do
add_index "offer_days", ["subscription_id"], name: "index_offer_days_on_subscription_id", using: :btree
create_table "open_api_calls_count_tracings", force: :cascade do |t|
t.integer "open_api_client_id"
t.integer "calls_count", null: false
t.datetime "at", null: false
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
end
add_index "open_api_calls_count_tracings", ["open_api_client_id"], name: "index_open_api_calls_count_tracings_on_open_api_client_id", using: :btree
create_table "open_api_clients", force: :cascade do |t|
t.string "name"
t.integer "calls_count", default: 0
t.string "token"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
end
create_table "plans", force: :cascade do |t|
t.string "name", limit: 255
t.integer "amount"
@ -366,7 +383,7 @@ ActiveRecord::Schema.define(version: 20160526102307) do
t.datetime "published_at"
end
add_index "projects", ["slug"], name: "index_projects_on_slug", unique: true, using: :btree
add_index "projects", ["slug"], name: "index_projects_on_slug", using: :btree
create_table "projects_components", force: :cascade do |t|
t.integer "project_id"
@ -659,6 +676,7 @@ ActiveRecord::Schema.define(version: 20160526102307) do
add_foreign_key "availability_tags", "availabilities"
add_foreign_key "availability_tags", "tags"
add_foreign_key "o_auth2_mappings", "o_auth2_providers"
add_foreign_key "open_api_calls_count_tracings", "open_api_clients"
add_foreign_key "prices", "groups"
add_foreign_key "prices", "plans"
add_foreign_key "user_tags", "tags"