dm_forum 4.2.2.3 → 4.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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 +11 -1
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/development.log +1464 -0
- data/spec/dummy/log/test.log +1581 -0
- metadata +15 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7307a2774636ef1eb7de248a655f96c265421f20
|
4
|
+
data.tar.gz: 1b56aeb001e6eba59b3f356b9b68a0fdf4f725be
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4c6e7dd187de06d1a4fee5ae379424bbab061312f12cdc91abb0b4bc3c5de1de06d544c1c64bf5e631c4a9b3fc4dd9b248aa7233282ff3b4ee8283d2513472a7
|
7
|
+
data.tar.gz: 1f780adcfe898476db96fe276b740d121e1a334f66c5c564541b8553f485a29942832679997e3a8a1bb0ee6563b724292243d2a88c1408760e124a15bbbbfcf6
|
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: 20160821150127) do
|
15
15
|
|
16
16
|
create_table "cms_blog_translations", force: :cascade do |t|
|
17
17
|
t.integer "cms_blog_id"
|
@@ -369,6 +369,8 @@ ActiveRecord::Schema.define(version: 20160128144313) do
|
|
369
369
|
t.text "tagline"
|
370
370
|
end
|
371
371
|
|
372
|
+
add_index "fms_forum_sites", ["account_id"], name: "index_fms_forum_sites_on_account_id"
|
373
|
+
|
372
374
|
create_table "fms_forum_topics", force: :cascade do |t|
|
373
375
|
t.integer "account_id"
|
374
376
|
t.integer "forum_id"
|
@@ -390,6 +392,11 @@ ActiveRecord::Schema.define(version: 20160128144313) do
|
|
390
392
|
add_index "fms_forum_topics", ["account_id", "forum_id", "slug"], name: "index_fms_forum_topics_on_account_id_and_forum_id_and_slug"
|
391
393
|
add_index "fms_forum_topics", ["account_id", "last_updated_at", "forum_id"], name: "index_forum_topics_last_updated_at_forum_id"
|
392
394
|
add_index "fms_forum_topics", ["account_id", "sticky", "last_updated_at", "forum_id"], name: "index_forum_topics_sticky_last_updated_at_forum_id"
|
395
|
+
add_index "fms_forum_topics", ["forum_id"], name: "index_fms_forum_topics_on_forum_id"
|
396
|
+
add_index "fms_forum_topics", ["forum_site_id"], name: "index_fms_forum_topics_on_forum_site_id"
|
397
|
+
add_index "fms_forum_topics", ["last_forum_comment_id"], name: "index_fms_forum_topics_on_last_forum_comment_id"
|
398
|
+
add_index "fms_forum_topics", ["last_user_id"], name: "index_fms_forum_topics_on_last_user_id"
|
399
|
+
add_index "fms_forum_topics", ["user_id"], name: "index_fms_forum_topics_on_user_id"
|
393
400
|
|
394
401
|
create_table "fms_forums", force: :cascade do |t|
|
395
402
|
t.integer "account_id"
|
@@ -411,6 +418,9 @@ ActiveRecord::Schema.define(version: 20160128144313) do
|
|
411
418
|
end
|
412
419
|
|
413
420
|
add_index "fms_forums", ["account_id", "slug"], name: "index_fms_forums_on_account_id_and_slug"
|
421
|
+
add_index "fms_forums", ["forum_category_id"], name: "index_fms_forums_on_forum_category_id"
|
422
|
+
add_index "fms_forums", ["forum_site_id"], name: "index_fms_forums_on_forum_site_id"
|
423
|
+
add_index "fms_forums", ["owner_id"], name: "index_fms_forums_on_owner_id"
|
414
424
|
|
415
425
|
create_table "follows", force: :cascade do |t|
|
416
426
|
t.integer "followable_id", null: false
|
Binary file
|