OSDN Git Service

speech and balloon template deleted
[pettanr/pettanr.git] / db / schema.rb
1 # encoding: UTF-8\r
2 # This file is auto-generated from the current state of the database. Instead\r
3 # of editing this file, please use the migrations feature of Active Record to\r
4 # incrementally modify your database, and then regenerate this schema definition.\r
5 #\r
6 # Note that this schema.rb definition is the authoritative source for your\r
7 # database schema. If you need to create the application database on another\r
8 # system, you should be using db:schema:load, not running all the migrations\r
9 # from scratch. The latter is a flawed and unsustainable approach (the more migrations\r
10 # you'll amass, the slower it'll run and the greater likelihood for issues).\r
11 #\r
12 # It's strongly recommended to check this file into your version control system.\r
13 \r
14 ActiveRecord::Schema.define(:version => 20120424100555) do\r
15 \r
16   create_table "admins", :force => true do |t|\r
17     t.string   "email",                                 :default => "", :null => false\r
18     t.string   "encrypted_password",     :limit => 128, :default => "", :null => false\r
19     t.string   "reset_password_token"\r
20     t.datetime "reset_password_sent_at"\r
21     t.datetime "remember_created_at"\r
22     t.integer  "sign_in_count",                         :default => 0\r
23     t.datetime "current_sign_in_at"\r
24     t.datetime "last_sign_in_at"\r
25     t.string   "current_sign_in_ip"\r
26     t.string   "last_sign_in_ip"\r
27     t.string   "confirmation_token"\r
28     t.datetime "confirmed_at"\r
29     t.datetime "confirmation_sent_at"\r
30     t.string   "authentication_token"\r
31     t.integer  "approve",                               :default => 0,  :null => false\r
32     t.datetime "created_at"\r
33     t.datetime "updated_at"\r
34   end\r
35 \r
36   add_index "admins", ["authentication_token"], :name => "index_admins_on_authentication_token", :unique => true\r
37   add_index "admins", ["confirmation_token"], :name => "index_admins_on_confirmation_token", :unique => true\r
38   add_index "admins", ["email"], :name => "index_admins_on_email", :unique => true\r
39   add_index "admins", ["reset_password_token"], :name => "index_admins_on_reset_password_token", :unique => true\r
40 \r
41   create_table "artists", :force => true do |t|\r
42     t.string   "email"\r
43     t.string   "name"\r
44     t.string   "homepage_url"\r
45     t.string   "api_url"\r
46     t.integer  "default_license_id", :default => 0, :null => false\r
47     t.datetime "crowled_at"\r
48     t.datetime "created_at"\r
49     t.datetime "updated_at"\r
50     t.integer  "author_id"\r
51   end\r
52 \r
53   create_table "authors", :force => true do |t|\r
54     t.string   "name"\r
55     t.integer  "user_id",    :default => 0, :null => false\r
56     t.datetime "created_at"\r
57     t.datetime "updated_at"\r
58   end\r
59 \r
60   add_index "authors", ["user_id"], :name => "index_authors_on_user_id", :unique => true\r
61 \r
62   create_table "balloons", :force => true do |t|\r
63     t.integer  "panel_id",                           :null => false\r
64     t.integer  "balloon_template_id",                :null => false\r
65     t.integer  "system_picture_id",                  :null => false\r
66     t.integer  "tail",                :default => 1, :null => false\r
67     t.integer  "size",                :default => 1, :null => false\r
68     t.integer  "x",                                  :null => false\r
69     t.integer  "y",                                  :null => false\r
70     t.integer  "z",                                  :null => false\r
71     t.integer  "t",                   :default => 1, :null => false\r
72     t.integer  "width",                              :null => false\r
73     t.integer  "height",                             :null => false\r
74     t.datetime "created_at"\r
75     t.datetime "updated_at"\r
76   end\r
77 \r
78   add_index "balloons", ["panel_id", "t"], :name => "balloon_idt", :unique => true\r
79   add_index "balloons", ["panel_id"], :name => "index_balloons_on_panel_id"\r
80 \r
81   create_table "comics", :force => true do |t|\r
82     t.string   "title",      :limit => 100,                :null => false\r
83     t.integer  "width",                                    :null => false\r
84     t.integer  "height",                                   :null => false\r
85     t.integer  "visible",                   :default => 0, :null => false\r
86     t.integer  "editable",                  :default => 0, :null => false\r
87     t.integer  "author_id",                                :null => false\r
88     t.datetime "created_at"\r
89     t.datetime "updated_at"\r
90   end\r
91 \r
92   add_index "comics", ["author_id"], :name => "index_comics_on_author_id"\r
93 \r
94   create_table "common_licenses", :force => true do |t|\r
95     t.integer  "license_id",                       :null => false\r
96     t.string   "name",                             :null => false\r
97     t.string   "url",                              :null => false\r
98     t.integer  "cc_by",             :default => 0, :null => false\r
99     t.integer  "cc_sa",             :default => 0, :null => false\r
100     t.integer  "cc_nd",             :default => 0, :null => false\r
101     t.integer  "cc_nc",             :default => 0, :null => false\r
102     t.integer  "no_resize",         :default => 0, :null => false\r
103     t.integer  "no_flip",           :default => 0, :null => false\r
104     t.integer  "no_convert",        :default => 0, :null => false\r
105     t.integer  "keep_aspect_ratio", :default => 0, :null => false\r
106     t.datetime "created_at"\r
107     t.datetime "updated_at"\r
108   end\r
109 \r
110   create_table "licenses", :force => true do |t|\r
111     t.string   "name",                             :null => false\r
112     t.string   "url",                              :null => false\r
113     t.integer  "cc_by",             :default => 0, :null => false\r
114     t.integer  "cc_sa",             :default => 0, :null => false\r
115     t.integer  "cc_nd",             :default => 0, :null => false\r
116     t.integer  "cc_nc",             :default => 0, :null => false\r
117     t.integer  "no_resize",         :default => 0, :null => false\r
118     t.integer  "no_flip",           :default => 0, :null => false\r
119     t.integer  "no_convert",        :default => 0, :null => false\r
120     t.integer  "keep_aspect_ratio", :default => 0, :null => false\r
121     t.datetime "created_at"\r
122     t.datetime "updated_at"\r
123   end\r
124 \r
125   add_index "licenses", ["url"], :name => "index_licenses_on_url", :unique => true\r
126 \r
127   create_table "original_licenses", :force => true do |t|\r
128     t.integer  "license_id",                       :null => false\r
129     t.string   "name",                             :null => false\r
130     t.string   "url",                              :null => false\r
131     t.integer  "cc_by",             :default => 0, :null => false\r
132     t.integer  "cc_sa",             :default => 0, :null => false\r
133     t.integer  "cc_nd",             :default => 0, :null => false\r
134     t.integer  "cc_nc",             :default => 0, :null => false\r
135     t.integer  "no_resize",         :default => 0, :null => false\r
136     t.integer  "no_flip",           :default => 0, :null => false\r
137     t.integer  "no_convert",        :default => 0, :null => false\r
138     t.integer  "keep_aspect_ratio", :default => 0, :null => false\r
139     t.datetime "created_at"\r
140     t.datetime "updated_at"\r
141   end\r
142 \r
143   create_table "original_pictures", :force => true do |t|\r
144     t.string   "ext",                       :null => false\r
145     t.integer  "width",                     :null => false\r
146     t.integer  "height",                    :null => false\r
147     t.integer  "filesize",                  :null => false\r
148     t.integer  "artist_id",  :default => 0, :null => false\r
149     t.integer  "license_id", :default => 0, :null => false\r
150     t.datetime "created_at"\r
151     t.datetime "updated_at"\r
152   end\r
153 \r
154   add_index "original_pictures", ["artist_id"], :name => "index_original_pictures_on_artist_id"\r
155 \r
156   create_table "panel_pictures", :force => true do |t|\r
157     t.integer  "panel_id",                                          :null => false\r
158     t.integer  "resource_picture_id",                               :null => false\r
159     t.string   "link",                :limit => 200\r
160     t.integer  "x",                                                 :null => false\r
161     t.integer  "y",                                                 :null => false\r
162     t.integer  "z",                                                 :null => false\r
163     t.integer  "t",                                  :default => 1, :null => false\r
164     t.integer  "width",                                             :null => false\r
165     t.integer  "height",                                            :null => false\r
166     t.datetime "created_at"\r
167     t.datetime "updated_at"\r
168   end\r
169 \r
170   add_index "panel_pictures", ["panel_id", "t"], :name => "panel_pictures_idt", :unique => true\r
171 \r
172   create_table "panels", :force => true do |t|\r
173     t.integer  "comic_id",                             :null => false\r
174     t.integer  "resource_picture_id"\r
175     t.integer  "width",               :default => 200, :null => false\r
176     t.integer  "height",              :default => 80,  :null => false\r
177     t.integer  "border",              :default => 1,   :null => false\r
178     t.integer  "x"\r
179     t.integer  "y"\r
180     t.integer  "z"\r
181     t.integer  "t",                                    :null => false\r
182     t.integer  "author_id",                            :null => false\r
183     t.datetime "created_at"\r
184     t.datetime "updated_at"\r
185   end\r
186 \r
187   add_index "panels", ["author_id"], :name => "index_panels_on_author_id"\r
188   add_index "panels", ["comic_id", "t"], :name => "panels_idt", :unique => true\r
189 \r
190   create_table "resource_pictures", :force => true do |t|\r
191     t.string   "ext",                                :null => false\r
192     t.integer  "width",                              :null => false\r
193     t.integer  "height",                             :null => false\r
194     t.integer  "filesize",                           :null => false\r
195     t.integer  "artist_id",           :default => 0, :null => false\r
196     t.integer  "license_id",          :default => 0, :null => false\r
197     t.integer  "original_picture_id",                :null => false\r
198     t.datetime "created_at"\r
199     t.datetime "updated_at"\r
200   end\r
201 \r
202   create_table "speech_balloon_templates", :force => true do |t|\r
203     t.string   "name",       :limit => 50,                :null => false\r
204     t.string   "classname",  :limit => 50,                :null => false\r
205     t.string   "caption",    :limit => 30,                :null => false\r
206     t.integer  "t",                        :default => 0, :null => false\r
207     t.string   "settings",                                :null => false\r
208     t.datetime "created_at"\r
209     t.datetime "updated_at"\r
210   end\r
211 \r
212   add_index "speech_balloon_templates", ["name"], :name => "speech_balloon_templates_name", :unique => true\r
213   add_index "speech_balloon_templates", ["t"], :name => "speech_balloon_templates_t", :unique => true\r
214 \r
215   create_table "speech_balloons", :force => true do |t|\r
216     t.string   "name",                      :null => false\r
217     t.integer  "tail_count", :default => 1, :null => false\r
218     t.integer  "size_count", :default => 1, :null => false\r
219     t.integer  "t",          :default => 1, :null => false\r
220     t.datetime "created_at"\r
221     t.datetime "updated_at"\r
222   end\r
223 \r
224   add_index "speech_balloons", ["t"], :name => "speech_balloons_t", :unique => true\r
225 \r
226   create_table "speeches", :force => true do |t|\r
227     t.integer  "balloon_id",                        :null => false\r
228     t.integer  "speech_template_id",                :null => false\r
229     t.string   "content"\r
230     t.integer  "x",                                 :null => false\r
231     t.integer  "y",                                 :null => false\r
232     t.integer  "t",                  :default => 1, :null => false\r
233     t.integer  "width",                             :null => false\r
234     t.integer  "height",                            :null => false\r
235     t.datetime "created_at"\r
236     t.datetime "updated_at"\r
237   end\r
238 \r
239   add_index "speeches", ["balloon_id", "t"], :name => "speeches_bt", :unique => true\r
240   add_index "speeches", ["balloon_id"], :name => "index_speeches_on_balloon_id"\r
241 \r
242   create_table "system_pictures", :force => true do |t|\r
243     t.string   "ext",                      :null => false\r
244     t.integer  "width",                    :null => false\r
245     t.integer  "height",                   :null => false\r
246     t.integer  "filesize",                 :null => false\r
247     t.string   "md5",        :limit => 32, :null => false\r
248     t.datetime "created_at"\r
249     t.datetime "updated_at"\r
250   end\r
251 \r
252   create_table "users", :force => true do |t|\r
253     t.string   "email",                                 :default => "", :null => false\r
254     t.string   "encrypted_password",     :limit => 128, :default => "", :null => false\r
255     t.string   "reset_password_token"\r
256     t.datetime "reset_password_sent_at"\r
257     t.datetime "remember_created_at"\r
258     t.integer  "sign_in_count",                         :default => 0\r
259     t.datetime "current_sign_in_at"\r
260     t.datetime "last_sign_in_at"\r
261     t.string   "current_sign_in_ip"\r
262     t.string   "last_sign_in_ip"\r
263     t.string   "authentication_token"\r
264     t.string   "confirmation_token"\r
265     t.datetime "confirmed_at"\r
266     t.datetime "confirmation_sent_at"\r
267     t.datetime "created_at"\r
268     t.datetime "updated_at"\r
269   end\r
270 \r
271   add_index "users", ["authentication_token"], :name => "index_users_on_authentication_token", :unique => true\r
272   add_index "users", ["confirmation_token"], :name => "index_users_on_confirmation_token", :unique => true\r
273   add_index "users", ["email"], :name => "index_users_on_email", :unique => true\r
274   add_index "users", ["reset_password_token"], :name => "index_users_on_reset_password_token", :unique => true\r
275 \r
276 end\r