1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/db/schema.rb
2015-05-05 03:10:25 +02:00

280 lines
10 KiB
Ruby

# encoding: UTF-8
# This file is auto-generated from the current state of the database. Instead
# of editing this file, please use the migrations feature of Active Record to
# incrementally modify your database, and then regenerate this schema definition.
#
# Note that this schema.rb definition is the authoritative source for your
# database schema. If you need to create the application database on another
# system, you should be using db:schema:load, not running all the migrations
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
# you'll amass, the slower it'll run and the greater likelihood for issues).
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20150429102754) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
create_table "addresses", force: :cascade do |t|
t.string "address"
t.string "street_number"
t.string "route"
t.string "locality"
t.string "country"
t.string "postal_code"
t.integer "placeable_id"
t.string "placeable_type"
t.datetime "created_at"
t.datetime "updated_at"
end
create_table "assets", force: :cascade do |t|
t.integer "viewable_id"
t.string "viewable_type"
t.string "attachment"
t.string "type"
t.datetime "created_at"
t.datetime "updated_at"
end
create_table "availabilities", force: :cascade do |t|
t.datetime "start_at"
t.datetime "end_at"
t.string "available_type"
t.integer "nb_total_places"
t.datetime "created_at"
t.datetime "updated_at"
end
create_table "categories", force: :cascade do |t|
t.string "name"
t.datetime "created_at"
t.datetime "updated_at"
end
create_table "components", force: :cascade do |t|
t.string "name", null: false
end
create_table "events", force: :cascade do |t|
t.string "title"
t.text "description"
t.integer "availability_id"
t.integer "amount"
t.integer "reduced_amount"
t.integer "nb_total_places"
t.integer "recurrence_id"
t.datetime "created_at"
t.datetime "updated_at"
end
add_index "events", ["availability_id"], name: "index_events_on_availability_id", using: :btree
add_index "events", ["recurrence_id"], name: "index_events_on_recurrence_id", using: :btree
create_table "events_categories", force: :cascade do |t|
t.integer "event_id"
t.integer "category_id"
t.datetime "created_at"
t.datetime "updated_at"
end
add_index "events_categories", ["category_id"], name: "index_events_categories_on_category_id", using: :btree
add_index "events_categories", ["event_id"], name: "index_events_categories_on_event_id", using: :btree
create_table "friendly_id_slugs", force: :cascade do |t|
t.string "slug", null: false
t.integer "sluggable_id", null: false
t.string "sluggable_type", limit: 50
t.string "scope"
t.datetime "created_at"
end
add_index "friendly_id_slugs", ["slug", "sluggable_type", "scope"], name: "index_friendly_id_slugs_on_slug_and_sluggable_type_and_scope", unique: true, using: :btree
add_index "friendly_id_slugs", ["slug", "sluggable_type"], name: "index_friendly_id_slugs_on_slug_and_sluggable_type", using: :btree
add_index "friendly_id_slugs", ["sluggable_id"], name: "index_friendly_id_slugs_on_sluggable_id", using: :btree
add_index "friendly_id_slugs", ["sluggable_type"], name: "index_friendly_id_slugs_on_sluggable_type", using: :btree
create_table "groups", force: :cascade do |t|
t.string "name"
t.datetime "created_at"
t.datetime "updated_at"
end
create_table "licences", force: :cascade do |t|
t.string "name", null: false
t.text "description"
end
create_table "machines", force: :cascade do |t|
t.string "name"
t.text "description"
t.text "spec"
t.string "slug"
t.datetime "created_at"
t.datetime "updated_at"
end
add_index "machines", ["slug"], name: "index_machines_on_slug", unique: true, using: :btree
create_table "notifications", force: :cascade do |t|
t.integer "receiver_id"
t.integer "attached_object_id"
t.string "attached_object_type"
t.integer "notification_type_id"
t.boolean "is_read", default: false
t.string "receiver_type"
t.boolean "is_send", default: false
t.datetime "created_at"
t.datetime "updated_at"
end
add_index "notifications", ["notification_type_id"], name: "index_notifications_on_notification_type_id", using: :btree
add_index "notifications", ["receiver_id"], name: "index_notifications_on_receiver_id", using: :btree
create_table "profiles", force: :cascade do |t|
t.integer "user_id"
t.string "first_name"
t.string "last_name"
t.boolean "gender"
t.date "birthday"
t.string "phone"
t.text "interest"
t.text "software_mastered"
t.datetime "created_at"
t.datetime "updated_at"
end
add_index "profiles", ["user_id"], name: "index_profiles_on_user_id", using: :btree
create_table "project_steps", force: :cascade do |t|
t.text "description"
t.string "title"
t.integer "project_id"
t.datetime "created_at"
t.datetime "updated_at"
end
add_index "project_steps", ["project_id"], name: "index_project_steps_on_project_id", using: :btree
create_table "project_users", force: :cascade do |t|
t.integer "project_id"
t.integer "user_id"
t.boolean "is_valid", default: false
t.string "valid_token"
t.datetime "created_at"
t.datetime "updated_at"
end
add_index "project_users", ["project_id"], name: "index_project_users_on_project_id", using: :btree
add_index "project_users", ["user_id"], name: "index_project_users_on_user_id", using: :btree
create_table "projects", force: :cascade do |t|
t.string "name"
t.text "description"
t.string "slug"
t.datetime "published_at"
t.integer "author_id"
t.text "tags"
t.string "state"
t.datetime "created_at"
t.datetime "updated_at"
t.integer "licence_id"
end
add_index "projects", ["slug"], name: "index_projects_on_slug", unique: true, using: :btree
create_table "projects_components", force: :cascade do |t|
t.integer "project_id"
t.integer "component_id"
end
add_index "projects_components", ["component_id"], name: "index_projects_components_on_component_id", using: :btree
add_index "projects_components", ["project_id"], name: "index_projects_components_on_project_id", using: :btree
create_table "projects_machines", force: :cascade do |t|
t.integer "project_id"
t.integer "machine_id"
end
add_index "projects_machines", ["machine_id"], name: "index_projects_machines_on_machine_id", using: :btree
add_index "projects_machines", ["project_id"], name: "index_projects_machines_on_project_id", using: :btree
create_table "projects_themes", force: :cascade do |t|
t.integer "project_id"
t.integer "theme_id"
end
add_index "projects_themes", ["project_id"], name: "index_projects_themes_on_project_id", using: :btree
add_index "projects_themes", ["theme_id"], name: "index_projects_themes_on_theme_id", using: :btree
create_table "roles", force: :cascade do |t|
t.string "name"
t.integer "resource_id"
t.string "resource_type"
t.datetime "created_at"
t.datetime "updated_at"
end
add_index "roles", ["name", "resource_type", "resource_id"], name: "index_roles_on_name_and_resource_type_and_resource_id", using: :btree
add_index "roles", ["name"], name: "index_roles_on_name", using: :btree
create_table "themes", force: :cascade do |t|
t.string "name", null: false
end
create_table "users", force: :cascade do |t|
t.string "email", default: "", null: false
t.string "encrypted_password", default: "", null: false
t.string "reset_password_token"
t.datetime "reset_password_sent_at"
t.datetime "remember_created_at"
t.integer "sign_in_count", default: 0, null: false
t.datetime "current_sign_in_at"
t.datetime "last_sign_in_at"
t.inet "current_sign_in_ip"
t.inet "last_sign_in_ip"
t.string "confirmation_token"
t.datetime "confirmed_at"
t.datetime "confirmation_sent_at"
t.string "unconfirmed_email"
t.integer "failed_attempts", default: 0, null: false
t.string "unlock_token"
t.datetime "locked_at"
t.boolean "is_allow_contact", default: true
t.string "username"
t.string "slug"
t.datetime "created_at"
t.datetime "updated_at"
t.integer "group_id"
end
add_index "users", ["confirmation_token"], name: "index_users_on_confirmation_token", unique: true, using: :btree
add_index "users", ["email"], name: "index_users_on_email", unique: true, using: :btree
add_index "users", ["group_id"], name: "index_users_on_group_id", using: :btree
add_index "users", ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true, using: :btree
add_index "users", ["slug"], name: "index_users_on_slug", unique: true, using: :btree
add_index "users", ["unlock_token"], name: "index_users_on_unlock_token", unique: true, using: :btree
add_index "users", ["username"], name: "index_users_on_username", unique: true, using: :btree
create_table "users_roles", id: false, force: :cascade do |t|
t.integer "user_id"
t.integer "role_id"
end
add_index "users_roles", ["user_id", "role_id"], name: "index_users_roles_on_user_id_and_role_id", using: :btree
add_foreign_key "events_categories", "categories"
add_foreign_key "events_categories", "events"
add_foreign_key "profiles", "users"
add_foreign_key "project_steps", "projects"
add_foreign_key "project_users", "projects"
add_foreign_key "project_users", "users"
add_foreign_key "projects_components", "components"
add_foreign_key "projects_components", "projects"
add_foreign_key "projects_machines", "machines"
add_foreign_key "projects_machines", "projects"
add_foreign_key "projects_themes", "projects"
add_foreign_key "projects_themes", "themes"
end