agenda-libre-ruby/db/schema.rb

191 lines
8.2 KiB
Ruby
Raw Normal View History

2013-11-14 10:54:09 +01:00
# 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.
2016-06-25 16:03:08 +02:00
ActiveRecord::Schema.define(version: 20160616190823) do
create_table "active_admin_comments", force: :cascade do |t|
t.string "namespace", limit: 255
t.text "body", limit: 65535
t.string "resource_id", limit: 255, null: false
t.string "resource_type", limit: 255, null: false
t.integer "author_id", limit: 4
t.string "author_type", limit: 255
t.datetime "created_at"
t.datetime "updated_at"
end
2016-04-23 12:54:39 +02:00
add_index "active_admin_comments", ["author_type", "author_id"], name: "index_active_admin_comments_on_author_type_and_author_id"
add_index "active_admin_comments", ["namespace"], name: "index_active_admin_comments_on_namespace"
add_index "active_admin_comments", ["resource_type", "resource_id"], name: "index_active_admin_comments_on_resource_type_and_resource_id"
create_table "admin_users", force: :cascade do |t|
t.string "email", limit: 255, default: "", null: false
t.string "encrypted_password", limit: 255, default: "", null: false
t.string "reset_password_token", limit: 255
t.datetime "reset_password_sent_at"
t.datetime "remember_created_at"
t.integer "sign_in_count", limit: 4, default: 0, null: false
t.datetime "current_sign_in_at"
t.datetime "last_sign_in_at"
t.string "current_sign_in_ip", limit: 255
t.string "last_sign_in_ip", limit: 255
t.datetime "created_at"
t.datetime "updated_at"
end
2016-04-23 12:54:39 +02:00
add_index "admin_users", ["email"], name: "index_admin_users_on_email", unique: true
add_index "admin_users", ["reset_password_token"], name: "index_admin_users_on_reset_password_token", unique: true
2013-11-14 10:54:09 +01:00
create_table "cities", force: :cascade do |t|
t.string "name", limit: 255, default: "", null: false
t.string "majname", limit: 255, default: "", null: false
t.integer "postalcode", limit: 4
t.integer "inseecode", limit: 4
t.integer "regioncode", limit: 4
2014-06-21 12:33:10 +02:00
t.float "latitude", limit: 24
t.float "longitude", limit: 24
2013-11-14 10:54:09 +01:00
end
2016-04-23 12:54:39 +02:00
add_index "cities", ["name"], name: "cities_name"
create_table "events", force: :cascade do |t|
t.string "title", limit: 255, default: "", null: false
t.text "description", limit: 65535, null: false
t.datetime "start_time", null: false
t.datetime "end_time", null: false
t.string "city", limit: 255, default: ""
t.integer "region_id", limit: 4, default: 0, null: false
t.integer "locality", limit: 4, default: 0, null: false
t.string "url", limit: 255, default: "", null: false
t.string "contact", limit: 255, default: "", null: false
t.string "submitter", limit: 255, default: "", null: false
t.integer "moderated", limit: 4, default: 0, null: false
t.string "tags", limit: 255, default: "", null: false
t.string "secret", limit: 255, default: "", null: false
2016-04-23 12:54:39 +02:00
t.datetime "decision_time"
t.datetime "submission_time"
2013-11-14 10:54:09 +01:00
t.string "moderator_mail_id", limit: 32
t.string "submitter_mail_id", limit: 32
t.text "address", limit: 65535
t.float "latitude", limit: 24
t.float "longitude", limit: 24
t.integer "lock_version", limit: 4, default: 0, null: false
t.string "place_name", limit: 255
t.integer "count", default: 1
t.integer "repeat", default: 0
t.text "rule"
t.integer "event_id"
2013-11-14 10:54:09 +01:00
end
add_index "events", ["event_id"], name: "index_events_on_event_id"
2016-04-23 12:54:39 +02:00
add_index "events", ["start_time", "end_time"], name: "events_date"
2014-08-23 16:59:42 +02:00
create_table "kinds", force: :cascade do |t|
2016-04-23 12:54:39 +02:00
t.string "name", null: false
t.string "icon"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
end
create_table "notes", force: :cascade do |t|
t.text "contents", limit: 65535, null: false
t.datetime "date", null: false
t.integer "event_id", limit: 4
t.integer "author_id", limit: 4
2013-11-14 10:54:09 +01:00
end
2015-02-15 17:10:17 +01:00
create_table "orgas", force: :cascade do |t|
2016-04-23 12:54:39 +02:00
t.integer "region_id", limit: 4, default: 0, null: false
t.string "department", limit: 4, default: "0", null: false
t.string "name", limit: 255, default: "", null: false
t.string "url", limit: 255, default: "", null: false
t.string "city", limit: 255, default: ""
t.integer "kind_id", limit: 4
t.string "feed", limit: 255
t.string "contact", limit: 255
t.string "submitter", limit: 255
2016-04-23 12:54:39 +02:00
t.boolean "moderated", limit: 1, default: false
t.datetime "submission_time"
t.datetime "decision_time"
t.string "secret", limit: 255
2016-04-23 12:54:39 +02:00
t.boolean "deleted", limit: 1, default: false, null: false
t.boolean "active", default: true, null: false
t.text "description"
t.datetime "created_at"
t.datetime "updated_at"
2016-04-23 12:54:39 +02:00
t.text "tag"
2016-10-27 21:08:55 +02:00
t.text "tags"
2016-04-23 12:54:39 +02:00
t.text "diaspora"
t.text "object_changes"
t.text "place_name"
t.text "address"
t.float "latitude"
t.float "longitude"
2015-02-15 17:10:17 +01:00
end
2016-04-23 12:54:39 +02:00
add_index "orgas", ["kind_id"], name: "index_orgas_on_kind_id"
create_table "regions", force: :cascade do |t|
t.string "name", limit: 255, default: "", null: false
end
create_table "taggings", force: :cascade do |t|
2016-04-23 12:54:39 +02:00
t.integer "tag_id"
t.integer "taggable_id"
t.string "taggable_type", limit: 255
2016-04-23 12:54:39 +02:00
t.integer "tagger_id"
t.string "tagger_type", limit: 255
t.string "context", limit: 128
t.datetime "created_at"
end
2016-04-23 12:54:39 +02:00
add_index "taggings", ["tag_id", "taggable_id", "taggable_type", "context", "tagger_id", "tagger_type"], name: "taggings_idx", unique: true
add_index "taggings", ["taggable_id", "taggable_type", "context"], name: "index_taggings_on_taggable_id_and_taggable_type_and_context"
create_table "tags", force: :cascade do |t|
t.string "name", limit: 255
2016-04-23 12:54:39 +02:00
t.integer "taggings_count", default: 0
end
2016-04-23 12:54:39 +02:00
add_index "tags", ["name"], name: "index_tags_on_name", unique: true
create_table "translations", force: :cascade do |t|
t.string "locale", limit: 255
t.string "key", limit: 255
t.text "value", limit: 65535
t.text "interpolations", limit: 65535
2016-04-23 12:54:39 +02:00
t.boolean "is_proc", limit: 1, default: false
end
create_table "users", force: :cascade do |t|
t.string "login", limit: 255, default: "", null: false
t.string "password", limit: 255, default: "", null: false
t.string "email", limit: 255, default: "", null: false
t.string "lastname", limit: 255, default: "", null: false
t.string "firstname", limit: 255, default: "", null: false
2013-11-14 10:54:09 +01:00
end
create_table "versions", force: :cascade do |t|
2016-04-23 12:54:39 +02:00
t.string "item_type", null: false
t.integer "item_id", null: false
t.string "event", null: false
t.string "whodunnit"
t.text "object"
t.datetime "created_at"
2016-04-23 12:54:39 +02:00
t.text "object_changes", limit: 1073741823
end
2016-04-23 12:54:39 +02:00
add_index "versions", ["item_type", "item_id"], name: "index_versions_on_item_type_and_item_id"
2013-11-14 10:54:09 +01:00
end