-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschema.rb
More file actions
122 lines (108 loc) · 3.42 KB
/
schema.rb
File metadata and controls
122 lines (108 loc) · 3.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
# 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: 20140224085638) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
create_table "jobs", force: true do |t|
t.integer "user_id"
t.integer "test_suite_id"
t.integer "test_id"
t.integer "test_step_id"
t.string "status"
t.datetime "start_time"
t.datetime "created_at"
t.datetime "updated_at"
t.datetime "finish_time"
end
create_table "object_repositories", force: true do |t|
t.string "name"
t.text "description"
t.string "url"
t.text "attachments"
t.integer "user_id"
end
create_table "queue_carts", force: true do |t|
t.integer "test_suite_id"
t.integer "test_id"
t.integer "test_step_id"
t.integer "user_id"
t.datetime "created_at"
t.datetime "updated_at"
end
create_table "reports", force: true do |t|
t.string "name"
t.integer "job_id"
t.integer "user_id"
t.string "description"
t.datetime "created_at"
t.datetime "updated_at"
t.string "status"
end
create_table "selenium_configs", force: true do |t|
t.string "browser"
t.string "url"
t.integer "user_id"
t.datetime "created_at"
t.datetime "updated_at"
end
create_table "test_steps", force: true do |t|
t.string "step_name"
t.text "step_description"
t.string "expected"
t.integer "object_repository_id"
t.string "page_name"
t.integer "element_id"
t.string "function"
t.string "value"
t.integer "test_id"
t.datetime "created_at"
t.datetime "updated_at"
t.string "status"
t.datetime "last_run"
end
create_table "test_suites", force: true do |t|
t.string "name"
t.text "description"
t.datetime "created_at"
t.datetime "updated_at"
t.integer "user_id"
end
create_table "tests", force: true do |t|
t.string "name"
t.text "description"
t.datetime "created_at"
t.datetime "updated_at"
t.integer "test_suite_id"
t.integer "test_step_id"
t.string "status"
t.datetime "last_run"
end
create_table "users", force: true do |t|
t.string "email"
t.datetime "created_at"
t.datetime "updated_at"
t.string "remember_token"
t.string "password_digest"
end
add_index "users", ["remember_token"], name: "index_users_on_remember_token", using: :btree
create_table "web_elements", force: true do |t|
t.string "page_name"
t.string "element_name"
t.string "element_type"
t.string "identifier_name"
t.string "identifier_value"
t.datetime "created_at"
t.datetime "updated_at"
t.integer "object_repository_id"
end
end