find-classroom/db/schema.rb

70 lines
2.5 KiB
Ruby
Raw Normal View History

2016-08-28 09:43:24 +08: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-12-07 21:59:13 +08:00
ActiveRecord::Schema.define(version: 20161207102921) do
2016-08-28 09:43:24 +08:00
2016-09-10 20:56:55 +08:00
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
2016-09-09 23:07:36 +08:00
create_table "courses", force: :cascade do |t|
t.string "name"
t.string "course_code"
t.string "course_type"
t.string "teaching_type"
t.string "exam_type"
t.string "credit"
t.integer "limit_num"
t.integer "student_num", default: 0
2016-09-09 23:07:36 +08:00
t.string "class_room"
t.string "course_time"
t.string "course_week"
t.integer "teacher_id"
2016-12-31 13:35:08 +08:00
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.string "course_introduction"
t.string "avatar"
2016-12-31 13:35:08 +08:00
t.boolean "open", default: false
t.boolean "degree", default: false
2017-01-02 16:12:11 +08:00
2016-08-28 09:43:24 +08:00
end
2016-09-09 23:07:36 +08:00
create_table "grades", force: :cascade do |t|
t.integer "course_id"
t.integer "user_id"
2016-08-28 09:43:24 +08:00
t.integer "grade"
2016-09-09 23:07:36 +08:00
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
2016-08-28 09:43:24 +08:00
end
2016-09-10 20:56:55 +08:00
add_index "grades", ["course_id"], name: "index_grades_on_course_id", using: :btree
add_index "grades", ["user_id"], name: "index_grades_on_user_id", using: :btree
2016-09-09 23:07:36 +08:00
2016-08-28 09:43:24 +08:00
create_table "users", force: :cascade do |t|
t.string "name"
t.string "email"
2016-09-09 23:07:36 +08:00
t.string "num"
t.string "major"
2016-08-28 09:43:24 +08:00
t.string "department"
t.string "password_digest"
t.string "remember_digest"
t.boolean "admin", default: false
2016-09-09 23:07:36 +08:00
t.boolean "teacher", default: false
2016-08-28 09:43:24 +08:00
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
end
2016-09-10 20:56:55 +08:00
add_index "users", ["email"], name: "index_users_on_email", unique: true, using: :btree
2016-08-28 09:43:24 +08:00
end