Commit 06f5295fedd4d96f3d52be0374b0dddac75d7cfb

Authored by Rodrigo Souto
1 parent 9712adf1

schema: remove mistakenly added plugins tables

Showing 1 changed file with 0 additions and 44 deletions   Show diff stats
db/schema.rb
... ... @@ -233,50 +233,6 @@ ActiveRecord::Schema.define(:version => 20131011164400) do
233 233 t.datetime "updated_at"
234 234 end
235 235  
236   - create_table "custom_forms_plugin_answers", :force => true do |t|
237   - t.text "value"
238   - t.integer "field_id"
239   - t.integer "submission_id"
240   - end
241   -
242   - create_table "custom_forms_plugin_fields", :force => true do |t|
243   - t.string "name"
244   - t.string "slug"
245   - t.string "type"
246   - t.string "default_value"
247   - t.string "choices"
248   - t.float "minimum"
249   - t.float "maximum"
250   - t.integer "form_id"
251   - t.boolean "mandatory", :default => false
252   - t.boolean "multiple"
253   - t.boolean "list"
254   - t.integer "position", :default => 0
255   - end
256   -
257   - create_table "custom_forms_plugin_forms", :force => true do |t|
258   - t.string "name"
259   - t.string "slug"
260   - t.text "description"
261   - t.integer "profile_id"
262   - t.datetime "begining"
263   - t.datetime "ending"
264   - t.boolean "report_submissions", :default => false
265   - t.boolean "on_membership", :default => false
266   - t.string "access"
267   - t.datetime "created_at"
268   - t.datetime "updated_at"
269   - end
270   -
271   - create_table "custom_forms_plugin_submissions", :force => true do |t|
272   - t.string "author_name"
273   - t.string "author_email"
274   - t.integer "profile_id"
275   - t.integer "form_id"
276   - t.datetime "created_at"
277   - t.datetime "updated_at"
278   - end
279   -
280 236 create_table "delayed_jobs", :force => true do |t|
281 237 t.integer "priority", :default => 0
282 238 t.integer "attempts", :default => 0
... ...