78 lines
3.3 KiB
Ruby
78 lines
3.3 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: 0) do
|
||
|
|
||
|
create_table "cities", force: true do |t|
|
||
|
t.string "name", default: "", null: false
|
||
|
t.string "majname", default: "", null: false
|
||
|
t.integer "postalcode"
|
||
|
t.integer "inseecode"
|
||
|
t.integer "regioncode"
|
||
|
t.float "latitude"
|
||
|
t.float "longitude"
|
||
|
end
|
||
|
|
||
|
add_index "cities", ["name"], name: "cities_name", using: :btree
|
||
|
|
||
|
create_table "events", force: true do |t|
|
||
|
t.string "title", default: "", null: false
|
||
|
t.text "description", null: false
|
||
|
t.datetime "start_time", null: false
|
||
|
t.datetime "end_time", null: false
|
||
|
t.string "city", default: "", null: false
|
||
|
t.integer "region", default: 0, null: false
|
||
|
t.integer "locality", default: 0, null: false
|
||
|
t.string "url", default: "", null: false
|
||
|
t.string "contact", default: "", null: false
|
||
|
t.string "submitter", default: "", null: false
|
||
|
t.integer "moderated", default: 0, null: false
|
||
|
t.string "tags", default: "", null: false
|
||
|
t.string "secret", default: "", null: false
|
||
|
t.datetime "decision_time", null: false
|
||
|
t.datetime "submission_time", null: false
|
||
|
t.string "moderator_mail_id", limit: 32
|
||
|
t.string "submitter_mail_id", limit: 32
|
||
|
end
|
||
|
|
||
|
add_index "events", ["start_time", "end_time"], name: "events_date", using: :btree
|
||
|
|
||
|
create_table "lugs", force: true do |t|
|
||
|
t.integer "region", default: 0, null: false
|
||
|
t.integer "department", default: 0, null: false
|
||
|
t.string "name", default: "", null: false
|
||
|
t.string "url", default: "", null: false
|
||
|
t.string "city", default: "", null: false
|
||
|
end
|
||
|
|
||
|
create_table "notes", force: true do |t|
|
||
|
t.text "contents", null: false
|
||
|
t.datetime "date", null: false
|
||
|
t.integer "event_id"
|
||
|
t.integer "author_id"
|
||
|
end
|
||
|
|
||
|
create_table "regions", force: true do |t|
|
||
|
t.string "name", default: "", null: false
|
||
|
end
|
||
|
|
||
|
create_table "users", force: true do |t|
|
||
|
t.string "login", default: "", null: false
|
||
|
t.string "password", default: "", null: false
|
||
|
t.string "email", default: "", null: false
|
||
|
t.string "lastname", default: "", null: false
|
||
|
t.string "firstname", default: "", null: false
|
||
|
end
|
||
|
|
||
|
end
|