forked from ClosureTree/closure_tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.rb
165 lines (129 loc) · 4.6 KB
/
schema.rb
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
# encoding: UTF-8
ActiveRecord::Schema.define(:version => 0) do
create_table "tags" do |t|
t.string "name"
t.string "title"
t.integer "parent_id"
t.integer "sort_order"
t.timestamps null: false
end
add_foreign_key(:tags, :tags, :column => 'parent_id')
create_table "tag_hierarchies", :id => false do |t|
t.integer "ancestor_id", :null => false
t.integer "descendant_id", :null => false
t.integer "generations", :null => false
end
add_foreign_key(:tag_hierarchies, :tags, :column => 'ancestor_id')
add_foreign_key(:tag_hierarchies, :tags, :column => 'descendant_id')
create_table "uuid_tags", :id => false do |t|
t.string "uuid", :unique => true
t.string "name"
t.string "title"
t.string "parent_uuid"
t.integer "sort_order"
t.timestamps null: false
end
create_table "uuid_tag_hierarchies", :id => false do |t|
t.string "ancestor_id", :null => false
t.string "descendant_id", :null => false
t.integer "generations", :null => false
end
create_table "destroyed_tags" do |t|
t.string "name"
end
add_index "tag_hierarchies", [:ancestor_id, :descendant_id, :generations], :unique => true, :name => "tag_anc_desc_idx"
add_index "tag_hierarchies", [:descendant_id], :name => "tag_desc_idx"
create_table "groups" do |t|
t.string "name", null: false
end
create_table "groupings" do |t|
t.string "name", null: false
end
create_table "user_sets" do |t|
t.string "name", null: false
end
create_table "teams" do |t|
t.string "name", null: false
end
create_table "users" do |t|
t.string "email"
t.integer "referrer_id"
t.integer "group_id"
t.timestamps null: false
end
add_foreign_key(:users, :users, :column => 'referrer_id')
create_table "contracts" do |t|
t.integer "user_id", :null => false
t.integer "contract_type_id"
end
create_table "contract_types" do |t|
t.string "name", :null => false
end
create_table "referral_hierarchies", :id => false do |t|
t.integer "ancestor_id", :null => false
t.integer "descendant_id", :null => false
t.integer "generations", :null => false
end
add_index "referral_hierarchies", [:ancestor_id, :descendant_id, :generations], :unique => true, :name => "ref_anc_desc_idx"
add_index "referral_hierarchies", [:descendant_id], :name => "ref_desc_idx"
create_table "labels" do |t|
t.string "name"
t.string "type"
t.integer "column_whereby_ordering_is_inferred"
t.integer "mother_id"
end
add_foreign_key(:labels, :labels, :column => 'mother_id')
create_table "label_hierarchies", :id => false do |t|
t.integer "ancestor_id", :null => false
t.integer "descendant_id", :null => false
t.integer "generations", :null => false
end
add_index "label_hierarchies", [:ancestor_id, :descendant_id, :generations], :unique => true, :name => "lh_anc_desc_idx"
add_index "label_hierarchies", [:descendant_id], :name => "lh_desc_idx"
create_table "cuisine_types" do |t|
t.string "name"
t.integer "parent_id"
end
create_table "cuisine_type_hierarchies", :id => false do |t|
t.integer "ancestor_id", :null => false
t.integer "descendant_id", :null => false
t.integer "generations", :null => false
end
create_table "namespace_types" do |t|
t.string "name"
t.integer "parent_id"
end
create_table "namespace_type_hierarchies", :id => false do |t|
t.integer "ancestor_id", :null => false
t.integer "descendant_id", :null => false
t.integer "generations", :null => false
end
create_table "metal" do |t|
t.integer "parent_id"
t.string "metal_type"
t.string "value"
t.string "description"
t.integer "sort_order"
end
add_foreign_key(:metal, :metal, :column => 'parent_id')
create_table "metal_hierarchies", :id => false do |t|
t.integer "ancestor_id", :null => false
t.integer "descendant_id", :null => false
t.integer "generations", :null => false
end
add_foreign_key(:metal_hierarchies, :metal, :column => 'ancestor_id')
add_foreign_key(:metal_hierarchies, :metal, :column => 'descendant_id')
create_table 'menu_items' do |t|
t.string 'name'
t.integer 'parent_id'
t.timestamps null: false
end
add_foreign_key(:menu_items, :menu_items, :column => 'parent_id')
create_table 'menu_item_hierarchies', :id => false do |t|
t.integer 'ancestor_id', :null => false
t.integer 'descendant_id', :null => false
t.integer 'generations', :null => false
end
add_foreign_key(:menu_item_hierarchies, :menu_items, :column => 'ancestor_id')
add_foreign_key(:menu_item_hierarchies, :menu_items, :column => 'descendant_id')
end