dm_event 4.2.2.3 → 4.2.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/spec/dummy/app/views/layouts/admin_theme/admin.html.erb +14 -0
- data/spec/dummy/config/initializers/admin_theme.rb +10 -0
- data/spec/dummy/db/schema.rb +16 -1
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/development.log +15753 -0
- data/spec/dummy/log/test.log +19507 -0
- data/spec/models/workshop_spec.rb +0 -4
- metadata +17 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 180e71b4786edf4cfe7e3080e0a19b19d7a28747
|
4
|
+
data.tar.gz: 8f54d8fdef7c5eb9888e7e1be5147518f360fadd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 41a0d259f056551b8527673cbf9b6b1b7436a76ab2bdfa4ab9e7cffc410312f136e367ab79e05e5f479e588049dc2596bf420bea9ee2b7046580dbeeee8ee687
|
7
|
+
data.tar.gz: 8e8e164a26a8446e7c9d73a9c27103a7891ed34b8f8bc10246a0404d3666e4703879ed259a1d7c4d464c6d25864af87db7ee25bcb8cbf09b93be23afdace431f
|
data/spec/dummy/db/schema.rb
CHANGED
@@ -11,7 +11,7 @@
|
|
11
11
|
#
|
12
12
|
# It's strongly recommended that you check this file into your version control system.
|
13
13
|
|
14
|
-
ActiveRecord::Schema.define(version:
|
14
|
+
ActiveRecord::Schema.define(version: 20160821150124) do
|
15
15
|
|
16
16
|
create_table "cms_blog_translations", force: :cascade do |t|
|
17
17
|
t.integer "cms_blog_id"
|
@@ -385,8 +385,13 @@ ActiveRecord::Schema.define(version: 20160128154136) do
|
|
385
385
|
t.text "payment_reminder_history"
|
386
386
|
end
|
387
387
|
|
388
|
+
add_index "ems_registrations", ["account_id"], name: "index_ems_registrations_on_account_id"
|
389
|
+
add_index "ems_registrations", ["payment_comment_id"], name: "index_ems_registrations_on_payment_comment_id"
|
388
390
|
add_index "ems_registrations", ["receipt_code"], name: "receipt_code_key"
|
391
|
+
add_index "ems_registrations", ["user_profile_id"], name: "index_ems_registrations_on_user_profile_id"
|
389
392
|
add_index "ems_registrations", ["uuid"], name: "index_ems_registrations_on_uuid"
|
393
|
+
add_index "ems_registrations", ["workshop_id"], name: "index_ems_registrations_on_workshop_id"
|
394
|
+
add_index "ems_registrations", ["workshop_price_id"], name: "index_ems_registrations_on_workshop_price_id"
|
390
395
|
|
391
396
|
create_table "ems_workshop_price_translations", force: :cascade do |t|
|
392
397
|
t.integer "ems_workshop_price_id"
|
@@ -398,6 +403,8 @@ ActiveRecord::Schema.define(version: 20160128154136) do
|
|
398
403
|
t.datetime "updated_at"
|
399
404
|
end
|
400
405
|
|
406
|
+
add_index "ems_workshop_price_translations", ["ems_workshop_price_id"], name: "index_ems_workshop_price_translations_on_ems_workshop_price_id"
|
407
|
+
|
401
408
|
create_table "ems_workshop_prices", force: :cascade do |t|
|
402
409
|
t.integer "workshop_id"
|
403
410
|
t.integer "price_cents"
|
@@ -419,6 +426,9 @@ ActiveRecord::Schema.define(version: 20160128154136) do
|
|
419
426
|
t.datetime "updated_at"
|
420
427
|
end
|
421
428
|
|
429
|
+
add_index "ems_workshop_prices", ["account_id"], name: "index_ems_workshop_prices_on_account_id"
|
430
|
+
add_index "ems_workshop_prices", ["workshop_id"], name: "index_ems_workshop_prices_on_workshop_id"
|
431
|
+
|
422
432
|
create_table "ems_workshop_translations", force: :cascade do |t|
|
423
433
|
t.integer "ems_workshop_id"
|
424
434
|
t.string "locale"
|
@@ -430,6 +440,8 @@ ActiveRecord::Schema.define(version: 20160128154136) do
|
|
430
440
|
t.text "summary"
|
431
441
|
end
|
432
442
|
|
443
|
+
add_index "ems_workshop_translations", ["ems_workshop_id"], name: "index_ems_workshop_translations_on_ems_workshop_id"
|
444
|
+
|
433
445
|
create_table "ems_workshops", force: :cascade do |t|
|
434
446
|
t.string "slug"
|
435
447
|
t.datetime "starting_on"
|
@@ -457,8 +469,11 @@ ActiveRecord::Schema.define(version: 20160128154136) do
|
|
457
469
|
t.boolean "payments_enabled"
|
458
470
|
t.boolean "show_address"
|
459
471
|
t.string "image"
|
472
|
+
t.boolean "bcc_contact_email", default: false
|
460
473
|
end
|
461
474
|
|
475
|
+
add_index "ems_workshops", ["account_id"], name: "index_ems_workshops_on_account_id"
|
476
|
+
add_index "ems_workshops", ["country_id"], name: "index_ems_workshops_on_country_id"
|
462
477
|
add_index "ems_workshops", ["slug"], name: "workshopname_key"
|
463
478
|
|
464
479
|
create_table "follows", force: :cascade do |t|
|
Binary file
|