bit_player 0.2.1 → 0.2.2
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/app/models/bit_player/content_module.rb +10 -0
- data/app/models/bit_player/tool.rb +10 -0
- data/lib/bit_player/version.rb +1 -1
- data/spec/dummy/log/test.log +211 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2192d34937b1e8c8161a9d98d66ec88188843873
|
|
4
|
+
data.tar.gz: 904c71b1cd880b82d05e6c049c1267677945fa04
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ded9d01a56e56947892c12909c139a9b9951cc700d9c8cd49b9d9f129f03d7ea3c103e6398b5c0b59211286602b09e395407d1ae6e5cab174cfa7c4b32431aee
|
|
7
|
+
data.tar.gz: 849597e183fac5c2eeaee54e135fb4a97942af0a397919bb18709a8939bba13e34544b35a7d8dd0fdabe50a467ba37e94478ed4bd185fd6a1aedc1f651a60a46
|
|
@@ -22,5 +22,15 @@ module BitPlayer
|
|
|
22
22
|
def provider_exists?(position)
|
|
23
23
|
content_providers.exists?(position: position)
|
|
24
24
|
end
|
|
25
|
+
|
|
26
|
+
def add_content_provider(type)
|
|
27
|
+
content_providers.create(type: type, position: last_position + 1)
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
private
|
|
31
|
+
|
|
32
|
+
def last_position
|
|
33
|
+
content_providers.order(:position).last.try(:position) || 0
|
|
34
|
+
end
|
|
25
35
|
end
|
|
26
36
|
end
|
|
@@ -9,5 +9,15 @@ module BitPlayer
|
|
|
9
9
|
validates :title, presence: true
|
|
10
10
|
validates :position, uniqueness: true
|
|
11
11
|
validates :is_home, inclusion: { in: [true, false] }
|
|
12
|
+
|
|
13
|
+
def add_module(title)
|
|
14
|
+
content_modules.create(title: title, position: last_position + 1)
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
private
|
|
18
|
+
|
|
19
|
+
def last_position
|
|
20
|
+
content_modules.order(:position).last.try(:position) || 0
|
|
21
|
+
end
|
|
12
22
|
end
|
|
13
23
|
end
|
data/lib/bit_player/version.rb
CHANGED
data/spec/dummy/log/test.log
CHANGED
|
@@ -1836,3 +1836,214 @@ PG::InsufficientPrivilege: ERROR: permission denied: "RI_ConstraintTrigger_c_23
|
|
|
1836
1836
|
[1m[36mBitPlayer::ContentModule Load (0.6ms)[0m [1mSELECT "bit_player_content_modules".* FROM "bit_player_content_modules" WHERE "bit_player_content_modules"."id" = $1 LIMIT 1[0m [["id", 437912910]]
|
|
1837
1837
|
[1m[35mBitPlayer::ContentProvider Load (0.8ms)[0m SELECT "bit_player_content_providers".* FROM "bit_player_content_providers" WHERE "bit_player_content_providers"."bit_player_content_module_id" = $1 AND "bit_player_content_providers"."position" = 8 ORDER BY "bit_player_content_providers"."id" ASC LIMIT 1 [["bit_player_content_module_id", 437912910]]
|
|
1838
1838
|
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
1839
|
+
[1m[36mActiveRecord::SchemaMigration Load (1.7ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
1840
|
+
PG::InsufficientPrivilege: ERROR: permission denied for relation schema_migrations
|
|
1841
|
+
: SELECT "schema_migrations".* FROM "schema_migrations"
|
|
1842
|
+
[1m[36m (2.5ms)[0m [1mALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_tools" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_content_modules" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_content_providers" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_slideshows" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_slides" DISABLE TRIGGER ALL[0m
|
|
1843
|
+
PG::InsufficientPrivilege: ERROR: must be owner of relation schema_migrations
|
|
1844
|
+
: ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_tools" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_content_modules" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_content_providers" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_slideshows" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_slides" DISABLE TRIGGER ALL
|
|
1845
|
+
[1m[35m (0.9ms)[0m ALTER TABLE "schema_migrations" DISABLE TRIGGER USER;ALTER TABLE "bit_core_tools" DISABLE TRIGGER USER;ALTER TABLE "bit_core_content_modules" DISABLE TRIGGER USER;ALTER TABLE "bit_core_content_providers" DISABLE TRIGGER USER;ALTER TABLE "bit_core_slideshows" DISABLE TRIGGER USER;ALTER TABLE "bit_core_slides" DISABLE TRIGGER USER
|
|
1846
|
+
PG::InsufficientPrivilege: ERROR: must be owner of relation schema_migrations
|
|
1847
|
+
: ALTER TABLE "schema_migrations" DISABLE TRIGGER USER;ALTER TABLE "bit_core_tools" DISABLE TRIGGER USER;ALTER TABLE "bit_core_content_modules" DISABLE TRIGGER USER;ALTER TABLE "bit_core_content_providers" DISABLE TRIGGER USER;ALTER TABLE "bit_core_slideshows" DISABLE TRIGGER USER;ALTER TABLE "bit_core_slides" DISABLE TRIGGER USER
|
|
1848
|
+
[1m[36m (0.4ms)[0m [1mALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_tools" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_content_modules" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_content_providers" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_slideshows" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_slides" ENABLE TRIGGER ALL[0m
|
|
1849
|
+
PG::InsufficientPrivilege: ERROR: must be owner of relation schema_migrations
|
|
1850
|
+
: ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_tools" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_content_modules" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_content_providers" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_slideshows" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_slides" ENABLE TRIGGER ALL
|
|
1851
|
+
[1m[35m (0.4ms)[0m ALTER TABLE "schema_migrations" ENABLE TRIGGER USER;ALTER TABLE "bit_core_tools" ENABLE TRIGGER USER;ALTER TABLE "bit_core_content_modules" ENABLE TRIGGER USER;ALTER TABLE "bit_core_content_providers" ENABLE TRIGGER USER;ALTER TABLE "bit_core_slideshows" ENABLE TRIGGER USER;ALTER TABLE "bit_core_slides" ENABLE TRIGGER USER
|
|
1852
|
+
PG::InsufficientPrivilege: ERROR: must be owner of relation schema_migrations
|
|
1853
|
+
: ALTER TABLE "schema_migrations" ENABLE TRIGGER USER;ALTER TABLE "bit_core_tools" ENABLE TRIGGER USER;ALTER TABLE "bit_core_content_modules" ENABLE TRIGGER USER;ALTER TABLE "bit_core_content_providers" ENABLE TRIGGER USER;ALTER TABLE "bit_core_slideshows" ENABLE TRIGGER USER;ALTER TABLE "bit_core_slides" ENABLE TRIGGER USER
|
|
1854
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_tools" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_content_modules" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_content_providers" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_slideshows" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_slides" DISABLE TRIGGER ALL[0m
|
|
1855
|
+
PG::InsufficientPrivilege: ERROR: must be owner of relation schema_migrations
|
|
1856
|
+
: ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_tools" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_content_modules" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_content_providers" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_slideshows" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_slides" DISABLE TRIGGER ALL
|
|
1857
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "schema_migrations" DISABLE TRIGGER USER;ALTER TABLE "bit_core_tools" DISABLE TRIGGER USER;ALTER TABLE "bit_core_content_modules" DISABLE TRIGGER USER;ALTER TABLE "bit_core_content_providers" DISABLE TRIGGER USER;ALTER TABLE "bit_core_slideshows" DISABLE TRIGGER USER;ALTER TABLE "bit_core_slides" DISABLE TRIGGER USER
|
|
1858
|
+
PG::InsufficientPrivilege: ERROR: must be owner of relation schema_migrations
|
|
1859
|
+
: ALTER TABLE "schema_migrations" DISABLE TRIGGER USER;ALTER TABLE "bit_core_tools" DISABLE TRIGGER USER;ALTER TABLE "bit_core_content_modules" DISABLE TRIGGER USER;ALTER TABLE "bit_core_content_providers" DISABLE TRIGGER USER;ALTER TABLE "bit_core_slideshows" DISABLE TRIGGER USER;ALTER TABLE "bit_core_slides" DISABLE TRIGGER USER
|
|
1860
|
+
[1m[36m (0.4ms)[0m [1mALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_tools" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_content_modules" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_content_providers" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_slideshows" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_slides" ENABLE TRIGGER ALL[0m
|
|
1861
|
+
PG::InsufficientPrivilege: ERROR: must be owner of relation schema_migrations
|
|
1862
|
+
: ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_tools" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_content_modules" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_content_providers" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_slideshows" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_slides" ENABLE TRIGGER ALL
|
|
1863
|
+
[1m[35m (0.4ms)[0m ALTER TABLE "schema_migrations" ENABLE TRIGGER USER;ALTER TABLE "bit_core_tools" ENABLE TRIGGER USER;ALTER TABLE "bit_core_content_modules" ENABLE TRIGGER USER;ALTER TABLE "bit_core_content_providers" ENABLE TRIGGER USER;ALTER TABLE "bit_core_slideshows" ENABLE TRIGGER USER;ALTER TABLE "bit_core_slides" ENABLE TRIGGER USER
|
|
1864
|
+
PG::InsufficientPrivilege: ERROR: must be owner of relation schema_migrations
|
|
1865
|
+
: ALTER TABLE "schema_migrations" ENABLE TRIGGER USER;ALTER TABLE "bit_core_tools" ENABLE TRIGGER USER;ALTER TABLE "bit_core_content_modules" ENABLE TRIGGER USER;ALTER TABLE "bit_core_content_providers" ENABLE TRIGGER USER;ALTER TABLE "bit_core_slideshows" ENABLE TRIGGER USER;ALTER TABLE "bit_core_slides" ENABLE TRIGGER USER
|
|
1866
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_tools" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_content_modules" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_content_providers" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_slideshows" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_slides" DISABLE TRIGGER ALL[0m
|
|
1867
|
+
PG::InsufficientPrivilege: ERROR: must be owner of relation schema_migrations
|
|
1868
|
+
: ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_tools" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_content_modules" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_content_providers" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_slideshows" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_slides" DISABLE TRIGGER ALL
|
|
1869
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "schema_migrations" DISABLE TRIGGER USER;ALTER TABLE "bit_core_tools" DISABLE TRIGGER USER;ALTER TABLE "bit_core_content_modules" DISABLE TRIGGER USER;ALTER TABLE "bit_core_content_providers" DISABLE TRIGGER USER;ALTER TABLE "bit_core_slideshows" DISABLE TRIGGER USER;ALTER TABLE "bit_core_slides" DISABLE TRIGGER USER
|
|
1870
|
+
PG::InsufficientPrivilege: ERROR: must be owner of relation schema_migrations
|
|
1871
|
+
: ALTER TABLE "schema_migrations" DISABLE TRIGGER USER;ALTER TABLE "bit_core_tools" DISABLE TRIGGER USER;ALTER TABLE "bit_core_content_modules" DISABLE TRIGGER USER;ALTER TABLE "bit_core_content_providers" DISABLE TRIGGER USER;ALTER TABLE "bit_core_slideshows" DISABLE TRIGGER USER;ALTER TABLE "bit_core_slides" DISABLE TRIGGER USER
|
|
1872
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_tools" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_content_modules" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_content_providers" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_slideshows" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_slides" ENABLE TRIGGER ALL[0m
|
|
1873
|
+
PG::InsufficientPrivilege: ERROR: must be owner of relation schema_migrations
|
|
1874
|
+
: ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_tools" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_content_modules" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_content_providers" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_slideshows" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_slides" ENABLE TRIGGER ALL
|
|
1875
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "schema_migrations" ENABLE TRIGGER USER;ALTER TABLE "bit_core_tools" ENABLE TRIGGER USER;ALTER TABLE "bit_core_content_modules" ENABLE TRIGGER USER;ALTER TABLE "bit_core_content_providers" ENABLE TRIGGER USER;ALTER TABLE "bit_core_slideshows" ENABLE TRIGGER USER;ALTER TABLE "bit_core_slides" ENABLE TRIGGER USER
|
|
1876
|
+
PG::InsufficientPrivilege: ERROR: must be owner of relation schema_migrations
|
|
1877
|
+
: ALTER TABLE "schema_migrations" ENABLE TRIGGER USER;ALTER TABLE "bit_core_tools" ENABLE TRIGGER USER;ALTER TABLE "bit_core_content_modules" ENABLE TRIGGER USER;ALTER TABLE "bit_core_content_providers" ENABLE TRIGGER USER;ALTER TABLE "bit_core_slideshows" ENABLE TRIGGER USER;ALTER TABLE "bit_core_slides" ENABLE TRIGGER USER
|
|
1878
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_tools" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_content_modules" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_content_providers" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_slideshows" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_slides" DISABLE TRIGGER ALL[0m
|
|
1879
|
+
PG::InsufficientPrivilege: ERROR: must be owner of relation schema_migrations
|
|
1880
|
+
: ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_tools" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_content_modules" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_content_providers" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_slideshows" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_slides" DISABLE TRIGGER ALL
|
|
1881
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "schema_migrations" DISABLE TRIGGER USER;ALTER TABLE "bit_core_tools" DISABLE TRIGGER USER;ALTER TABLE "bit_core_content_modules" DISABLE TRIGGER USER;ALTER TABLE "bit_core_content_providers" DISABLE TRIGGER USER;ALTER TABLE "bit_core_slideshows" DISABLE TRIGGER USER;ALTER TABLE "bit_core_slides" DISABLE TRIGGER USER
|
|
1882
|
+
PG::InsufficientPrivilege: ERROR: must be owner of relation schema_migrations
|
|
1883
|
+
: ALTER TABLE "schema_migrations" DISABLE TRIGGER USER;ALTER TABLE "bit_core_tools" DISABLE TRIGGER USER;ALTER TABLE "bit_core_content_modules" DISABLE TRIGGER USER;ALTER TABLE "bit_core_content_providers" DISABLE TRIGGER USER;ALTER TABLE "bit_core_slideshows" DISABLE TRIGGER USER;ALTER TABLE "bit_core_slides" DISABLE TRIGGER USER
|
|
1884
|
+
[1m[36m (0.4ms)[0m [1mALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_tools" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_content_modules" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_content_providers" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_slideshows" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_slides" ENABLE TRIGGER ALL[0m
|
|
1885
|
+
PG::InsufficientPrivilege: ERROR: must be owner of relation schema_migrations
|
|
1886
|
+
: ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_tools" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_content_modules" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_content_providers" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_slideshows" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_slides" ENABLE TRIGGER ALL
|
|
1887
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "schema_migrations" ENABLE TRIGGER USER;ALTER TABLE "bit_core_tools" ENABLE TRIGGER USER;ALTER TABLE "bit_core_content_modules" ENABLE TRIGGER USER;ALTER TABLE "bit_core_content_providers" ENABLE TRIGGER USER;ALTER TABLE "bit_core_slideshows" ENABLE TRIGGER USER;ALTER TABLE "bit_core_slides" ENABLE TRIGGER USER
|
|
1888
|
+
PG::InsufficientPrivilege: ERROR: must be owner of relation schema_migrations
|
|
1889
|
+
: ALTER TABLE "schema_migrations" ENABLE TRIGGER USER;ALTER TABLE "bit_core_tools" ENABLE TRIGGER USER;ALTER TABLE "bit_core_content_modules" ENABLE TRIGGER USER;ALTER TABLE "bit_core_content_providers" ENABLE TRIGGER USER;ALTER TABLE "bit_core_slideshows" ENABLE TRIGGER USER;ALTER TABLE "bit_core_slides" ENABLE TRIGGER USER
|
|
1890
|
+
[1m[36m (0.4ms)[0m [1mALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_tools" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_content_modules" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_content_providers" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_slideshows" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_slides" DISABLE TRIGGER ALL[0m
|
|
1891
|
+
PG::InsufficientPrivilege: ERROR: must be owner of relation schema_migrations
|
|
1892
|
+
: ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_tools" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_content_modules" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_content_providers" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_slideshows" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_slides" DISABLE TRIGGER ALL
|
|
1893
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "schema_migrations" DISABLE TRIGGER USER;ALTER TABLE "bit_core_tools" DISABLE TRIGGER USER;ALTER TABLE "bit_core_content_modules" DISABLE TRIGGER USER;ALTER TABLE "bit_core_content_providers" DISABLE TRIGGER USER;ALTER TABLE "bit_core_slideshows" DISABLE TRIGGER USER;ALTER TABLE "bit_core_slides" DISABLE TRIGGER USER
|
|
1894
|
+
PG::InsufficientPrivilege: ERROR: must be owner of relation schema_migrations
|
|
1895
|
+
: ALTER TABLE "schema_migrations" DISABLE TRIGGER USER;ALTER TABLE "bit_core_tools" DISABLE TRIGGER USER;ALTER TABLE "bit_core_content_modules" DISABLE TRIGGER USER;ALTER TABLE "bit_core_content_providers" DISABLE TRIGGER USER;ALTER TABLE "bit_core_slideshows" DISABLE TRIGGER USER;ALTER TABLE "bit_core_slides" DISABLE TRIGGER USER
|
|
1896
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_tools" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_content_modules" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_content_providers" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_slideshows" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_slides" ENABLE TRIGGER ALL[0m
|
|
1897
|
+
PG::InsufficientPrivilege: ERROR: must be owner of relation schema_migrations
|
|
1898
|
+
: ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_tools" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_content_modules" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_content_providers" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_slideshows" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_slides" ENABLE TRIGGER ALL
|
|
1899
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "schema_migrations" ENABLE TRIGGER USER;ALTER TABLE "bit_core_tools" ENABLE TRIGGER USER;ALTER TABLE "bit_core_content_modules" ENABLE TRIGGER USER;ALTER TABLE "bit_core_content_providers" ENABLE TRIGGER USER;ALTER TABLE "bit_core_slideshows" ENABLE TRIGGER USER;ALTER TABLE "bit_core_slides" ENABLE TRIGGER USER
|
|
1900
|
+
PG::InsufficientPrivilege: ERROR: must be owner of relation schema_migrations
|
|
1901
|
+
: ALTER TABLE "schema_migrations" ENABLE TRIGGER USER;ALTER TABLE "bit_core_tools" ENABLE TRIGGER USER;ALTER TABLE "bit_core_content_modules" ENABLE TRIGGER USER;ALTER TABLE "bit_core_content_providers" ENABLE TRIGGER USER;ALTER TABLE "bit_core_slideshows" ENABLE TRIGGER USER;ALTER TABLE "bit_core_slides" ENABLE TRIGGER USER
|
|
1902
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_tools" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_content_modules" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_content_providers" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_slideshows" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_slides" DISABLE TRIGGER ALL[0m
|
|
1903
|
+
PG::InsufficientPrivilege: ERROR: must be owner of relation schema_migrations
|
|
1904
|
+
: ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_tools" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_content_modules" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_content_providers" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_slideshows" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_slides" DISABLE TRIGGER ALL
|
|
1905
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "schema_migrations" DISABLE TRIGGER USER;ALTER TABLE "bit_core_tools" DISABLE TRIGGER USER;ALTER TABLE "bit_core_content_modules" DISABLE TRIGGER USER;ALTER TABLE "bit_core_content_providers" DISABLE TRIGGER USER;ALTER TABLE "bit_core_slideshows" DISABLE TRIGGER USER;ALTER TABLE "bit_core_slides" DISABLE TRIGGER USER
|
|
1906
|
+
PG::InsufficientPrivilege: ERROR: must be owner of relation schema_migrations
|
|
1907
|
+
: ALTER TABLE "schema_migrations" DISABLE TRIGGER USER;ALTER TABLE "bit_core_tools" DISABLE TRIGGER USER;ALTER TABLE "bit_core_content_modules" DISABLE TRIGGER USER;ALTER TABLE "bit_core_content_providers" DISABLE TRIGGER USER;ALTER TABLE "bit_core_slideshows" DISABLE TRIGGER USER;ALTER TABLE "bit_core_slides" DISABLE TRIGGER USER
|
|
1908
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_tools" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_content_modules" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_content_providers" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_slideshows" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_slides" ENABLE TRIGGER ALL[0m
|
|
1909
|
+
PG::InsufficientPrivilege: ERROR: must be owner of relation schema_migrations
|
|
1910
|
+
: ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_tools" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_content_modules" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_content_providers" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_slideshows" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_slides" ENABLE TRIGGER ALL
|
|
1911
|
+
[1m[35m (0.4ms)[0m ALTER TABLE "schema_migrations" ENABLE TRIGGER USER;ALTER TABLE "bit_core_tools" ENABLE TRIGGER USER;ALTER TABLE "bit_core_content_modules" ENABLE TRIGGER USER;ALTER TABLE "bit_core_content_providers" ENABLE TRIGGER USER;ALTER TABLE "bit_core_slideshows" ENABLE TRIGGER USER;ALTER TABLE "bit_core_slides" ENABLE TRIGGER USER
|
|
1912
|
+
PG::InsufficientPrivilege: ERROR: must be owner of relation schema_migrations
|
|
1913
|
+
: ALTER TABLE "schema_migrations" ENABLE TRIGGER USER;ALTER TABLE "bit_core_tools" ENABLE TRIGGER USER;ALTER TABLE "bit_core_content_modules" ENABLE TRIGGER USER;ALTER TABLE "bit_core_content_providers" ENABLE TRIGGER USER;ALTER TABLE "bit_core_slideshows" ENABLE TRIGGER USER;ALTER TABLE "bit_core_slides" ENABLE TRIGGER USER
|
|
1914
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
1915
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
|
1916
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
|
1917
|
+
PG::UndefinedTable: ERROR: relation "bit_player_tools" does not exist
|
|
1918
|
+
LINE 5: WHERE a.attrelid = '"bit_player_tools"'::regc...
|
|
1919
|
+
^
|
|
1920
|
+
: SELECT a.attname, format_type(a.atttypid, a.atttypmod),
|
|
1921
|
+
pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod
|
|
1922
|
+
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
|
1923
|
+
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
|
1924
|
+
WHERE a.attrelid = '"bit_player_tools"'::regclass
|
|
1925
|
+
AND a.attnum > 0 AND NOT a.attisdropped
|
|
1926
|
+
ORDER BY a.attnum
|
|
1927
|
+
|
|
1928
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
1929
|
+
[1m[36m (9.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [0m
|
|
1930
|
+
[1m[35m (5.6ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
|
1931
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
1932
|
+
Migrating to CreateBitPlayerContentModules (20140305231316)
|
|
1933
|
+
[1m[35m (0.3ms)[0m BEGIN
|
|
1934
|
+
[1m[36m (10.7ms)[0m [1mCREATE TABLE "bit_player_content_modules" ("id" serial primary key, "title" character varying(255) NOT NULL, "context" character varying(255) NOT NULL, "position" integer DEFAULT 1 NOT NULL, "created_at" timestamp, "updated_at" timestamp) [0m
|
|
1935
|
+
[1m[35mSQL (1.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140305231316"]]
|
|
1936
|
+
[1m[36m (0.5ms)[0m [1mCOMMIT[0m
|
|
1937
|
+
Migrating to CreateBitPlayerContentProviders (20140305231317)
|
|
1938
|
+
[1m[35m (0.3ms)[0m BEGIN
|
|
1939
|
+
[1m[36m (4.9ms)[0m [1mCREATE TABLE "bit_player_content_providers" ("id" serial primary key, "type" character varying(255) NOT NULL, "source_content_type" character varying(255), "source_content_id" integer, "bit_player_content_module_id" integer NOT NULL, "position" integer DEFAULT 1 NOT NULL, "created_at" timestamp, "updated_at" timestamp) [0m
|
|
1940
|
+
[1m[35m (1.1ms)[0m CREATE INDEX "content_module_index" ON "bit_player_content_providers" ("bit_player_content_module_id")
|
|
1941
|
+
[1m[36m (6.8ms)[0m [1m ALTER TABLE bit_player_content_providers
|
|
1942
|
+
ADD CONSTRAINT fk_content_providers_modules
|
|
1943
|
+
FOREIGN KEY (bit_player_content_module_id)
|
|
1944
|
+
REFERENCES bit_player_content_modules(id)
|
|
1945
|
+
[0m
|
|
1946
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140305231317"]]
|
|
1947
|
+
[1m[36m (0.8ms)[0m [1mCOMMIT[0m
|
|
1948
|
+
Migrating to CreateBitPlayerParticipantStatuses (20140305233110)
|
|
1949
|
+
[1m[35m (0.4ms)[0m BEGIN
|
|
1950
|
+
[1m[36m (3.3ms)[0m [1mCREATE TABLE "bit_player_participant_statuses" ("id" serial primary key, "context" character varying(255), "module_position" integer, "provider_position" integer, "content_position" integer, "participant_id" integer NOT NULL, "created_at" timestamp, "updated_at" timestamp) [0m
|
|
1951
|
+
[1m[35m (1.2ms)[0m CREATE INDEX "index_participant_statuses_on_participant_id" ON "bit_player_participant_statuses" ("participant_id")
|
|
1952
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140305233110"]]
|
|
1953
|
+
[1m[35m (0.5ms)[0m COMMIT
|
|
1954
|
+
Migrating to CreateBitPlayerSlideshows (20140305234757)
|
|
1955
|
+
[1m[36m (0.3ms)[0m [1mBEGIN[0m
|
|
1956
|
+
[1m[35m (4.0ms)[0m CREATE TABLE "bit_player_slideshows" ("id" serial primary key, "title" character varying(255) NOT NULL, "created_at" timestamp, "updated_at" timestamp)
|
|
1957
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140305234757"]]
|
|
1958
|
+
[1m[35m (0.5ms)[0m COMMIT
|
|
1959
|
+
Migrating to CreateBitPlayerSlides (20140306000537)
|
|
1960
|
+
[1m[36m (0.3ms)[0m [1mBEGIN[0m
|
|
1961
|
+
[1m[35m (6.1ms)[0m CREATE TABLE "bit_player_slides" ("id" serial primary key, "title" character varying(255), "body" text NOT NULL, "position" integer DEFAULT 1 NOT NULL, "bit_player_slideshow_id" integer NOT NULL, "type" character varying(255), "options" text, "is_title_visible" boolean DEFAULT 't' NOT NULL, "created_at" timestamp, "updated_at" timestamp)
|
|
1962
|
+
[1m[36m (1.1ms)[0m [1mCREATE INDEX "index_bit_player_slides_on_bit_player_slideshow_id" ON "bit_player_slides" ("bit_player_slideshow_id")[0m
|
|
1963
|
+
[1m[35m (1.9ms)[0m ALTER TABLE bit_player_slides
|
|
1964
|
+
ADD CONSTRAINT fk_slides_slideshows
|
|
1965
|
+
FOREIGN KEY (bit_player_slideshow_id)
|
|
1966
|
+
REFERENCES bit_player_slideshows(id)
|
|
1967
|
+
|
|
1968
|
+
[1m[36m (1.7ms)[0m [1m ALTER TABLE bit_player_slides
|
|
1969
|
+
ADD CONSTRAINT bit_player_slide_position UNIQUE (bit_player_slideshow_id, position)
|
|
1970
|
+
DEFERRABLE INITIALLY IMMEDIATE
|
|
1971
|
+
[0m
|
|
1972
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140306000537"]]
|
|
1973
|
+
[1m[36m (0.6ms)[0m [1mCOMMIT[0m
|
|
1974
|
+
Migrating to CreateBitPlayerTools (20140407201524)
|
|
1975
|
+
[1m[35m (0.4ms)[0m BEGIN
|
|
1976
|
+
[1m[36m (3.5ms)[0m [1mCREATE TABLE "bit_player_tools" ("id" serial primary key, "title" character varying(255) NOT NULL, "position" integer, "is_home" boolean DEFAULT 'f' NOT NULL, "created_at" timestamp, "updated_at" timestamp) [0m
|
|
1977
|
+
[1m[35m (1.2ms)[0m CREATE UNIQUE INDEX "index_bit_player_tools_on_title" ON "bit_player_tools" ("title")
|
|
1978
|
+
[1m[36m (1.2ms)[0m [1mCREATE UNIQUE INDEX "index_bit_player_tools_on_position" ON "bit_player_tools" ("position")[0m
|
|
1979
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140407201524"]]
|
|
1980
|
+
[1m[36m (0.5ms)[0m [1mCOMMIT[0m
|
|
1981
|
+
Migrating to ChangeModuleContextToTool (20140407201525)
|
|
1982
|
+
[1m[35m (0.3ms)[0m BEGIN
|
|
1983
|
+
[1m[36m (0.6ms)[0m [1mALTER TABLE "bit_player_content_modules" ADD COLUMN "bit_player_tool_id" integer[0m
|
|
1984
|
+
[1m[35mBitPlayer::ContentModule Load (0.4ms)[0m SELECT "bit_player_content_modules".* FROM "bit_player_content_modules"
|
|
1985
|
+
[1m[36m (0.4ms)[0m [1mALTER TABLE "bit_player_content_modules" ALTER "bit_player_tool_id" SET NOT NULL[0m
|
|
1986
|
+
[1m[35m (0.9ms)[0m ALTER TABLE "bit_player_content_modules" DROP "context"
|
|
1987
|
+
[1m[36m (2.3ms)[0m [1m ALTER TABLE bit_player_content_modules
|
|
1988
|
+
ADD CONSTRAINT fk_content_modules_tools
|
|
1989
|
+
FOREIGN KEY (bit_player_tool_id)
|
|
1990
|
+
REFERENCES bit_player_tools(id)
|
|
1991
|
+
[0m
|
|
1992
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140407201525"]]
|
|
1993
|
+
[1m[36m (0.5ms)[0m [1mCOMMIT[0m
|
|
1994
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.4ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
1995
|
+
[1m[36m (3.4ms)[0m [1mALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "bit_player_content_providers" DISABLE TRIGGER ALL;ALTER TABLE "bit_player_participant_statuses" DISABLE TRIGGER ALL;ALTER TABLE "bit_player_slideshows" DISABLE TRIGGER ALL;ALTER TABLE "bit_player_slides" DISABLE TRIGGER ALL;ALTER TABLE "bit_player_tools" DISABLE TRIGGER ALL;ALTER TABLE "bit_player_content_modules" DISABLE TRIGGER ALL[0m
|
|
1996
|
+
[1m[35m (0.3ms)[0m BEGIN
|
|
1997
|
+
[1m[36mFixture Delete (0.9ms)[0m [1mDELETE FROM "bit_player_slideshows"[0m
|
|
1998
|
+
[1m[35mFixture Insert (0.8ms)[0m INSERT INTO "bit_player_slideshows" ("title", "created_at", "updated_at", "id") VALUES ('Slideshow 1', '2014-04-24 16:47:07', '2014-04-24 16:47:07', 504123193)
|
|
1999
|
+
[1m[36mFixture Delete (2.6ms)[0m [1mDELETE FROM "bit_player_slides"[0m
|
|
2000
|
+
[1m[35mFixture Insert (0.9ms)[0m INSERT INTO "bit_player_slides" ("position", "title", "body", "created_at", "updated_at", "id", "bit_player_slideshow_id") VALUES (1, 'Slide 1', 'lorem...', '2014-04-24 16:47:07', '2014-04-24 16:47:07', 538050605, 504123193)
|
|
2001
|
+
[1m[36mFixture Insert (0.5ms)[0m [1mINSERT INTO "bit_player_slides" ("position", "title", "body", "created_at", "updated_at", "id", "bit_player_slideshow_id") VALUES (2, 'Slide 2', 'lorem...', '2014-04-24 16:47:07', '2014-04-24 16:47:07', 958091673, 504123193)[0m
|
|
2002
|
+
[1m[35mFixture Insert (0.3ms)[0m INSERT INTO "bit_player_slides" ("position", "title", "body", "created_at", "updated_at", "id", "bit_player_slideshow_id") VALUES (3, 'Slide 3', 'lorem...', '2014-04-24 16:47:07', '2014-04-24 16:47:07', 236740868, 504123193)
|
|
2003
|
+
[1m[36m (0.5ms)[0m [1mCOMMIT[0m
|
|
2004
|
+
[1m[35m (1.3ms)[0m ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "bit_player_content_providers" ENABLE TRIGGER ALL;ALTER TABLE "bit_player_participant_statuses" ENABLE TRIGGER ALL;ALTER TABLE "bit_player_slideshows" ENABLE TRIGGER ALL;ALTER TABLE "bit_player_slides" ENABLE TRIGGER ALL;ALTER TABLE "bit_player_tools" ENABLE TRIGGER ALL;ALTER TABLE "bit_player_content_modules" ENABLE TRIGGER ALL
|
|
2005
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
2006
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
|
2007
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
2008
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
2009
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
2010
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
|
2011
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
2012
|
+
[1m[35mBitPlayer::Slide Load (1.5ms)[0m SELECT "bit_player_slides".* FROM "bit_player_slides" WHERE "bit_player_slides"."id" = $1 LIMIT 1 [["id", 538050605]]
|
|
2013
|
+
[1m[36mBitPlayer::Slide Load (0.6ms)[0m [1mSELECT "bit_player_slides".* FROM "bit_player_slides" WHERE "bit_player_slides"."id" = $1 LIMIT 1[0m [["id", 958091673]]
|
|
2014
|
+
[1m[35mBitPlayer::Slide Load (0.6ms)[0m SELECT "bit_player_slides".* FROM "bit_player_slides" WHERE "bit_player_slides"."id" = $1 LIMIT 1 [["id", 236740868]]
|
|
2015
|
+
[1m[36m (1.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2016
|
+
[1m[35m (0.3ms)[0m SET CONSTRAINTS bit_player_slide_position DEFERRED
|
|
2017
|
+
[1m[36mSQL (0.6ms)[0m [1mUPDATE "bit_player_slides" SET "position" = 1 WHERE "bit_player_slides"."id" = 236740868[0m
|
|
2018
|
+
[1m[35mSQL (0.4ms)[0m UPDATE "bit_player_slides" SET "position" = 2 WHERE "bit_player_slides"."id" = 538050605
|
|
2019
|
+
[1m[36mSQL (0.4ms)[0m [1mUPDATE "bit_player_slides" SET "position" = 3 WHERE "bit_player_slides"."id" = 958091673[0m
|
|
2020
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2021
|
+
[1m[36mBitPlayer::Slide Load (0.4ms)[0m [1mSELECT "bit_player_slides".* FROM "bit_player_slides" WHERE "bit_player_slides"."id" = $1 LIMIT 1[0m [["id", 538050605]]
|
|
2022
|
+
[1m[35mBitPlayer::Slide Load (0.4ms)[0m SELECT "bit_player_slides".* FROM "bit_player_slides" WHERE "bit_player_slides"."id" = $1 LIMIT 1 [["id", 958091673]]
|
|
2023
|
+
[1m[36mBitPlayer::Slide Load (0.4ms)[0m [1mSELECT "bit_player_slides".* FROM "bit_player_slides" WHERE "bit_player_slides"."id" = $1 LIMIT 1[0m [["id", 236740868]]
|
|
2024
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
2025
|
+
[1m[36m (1.9ms)[0m [1mALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "bit_player_content_providers" DISABLE TRIGGER ALL;ALTER TABLE "bit_player_participant_statuses" DISABLE TRIGGER ALL;ALTER TABLE "bit_player_slideshows" DISABLE TRIGGER ALL;ALTER TABLE "bit_player_slides" DISABLE TRIGGER ALL;ALTER TABLE "bit_player_tools" DISABLE TRIGGER ALL;ALTER TABLE "bit_player_content_modules" DISABLE TRIGGER ALL[0m
|
|
2026
|
+
[1m[35m (0.3ms)[0m BEGIN
|
|
2027
|
+
[1m[36mFixture Delete (0.6ms)[0m [1mDELETE FROM "bit_player_tools"[0m
|
|
2028
|
+
[1m[35mFixture Insert (0.8ms)[0m INSERT INTO "bit_player_tools" ("title", "created_at", "updated_at", "id") VALUES ('Home', '2014-04-24 16:47:07', '2014-04-24 16:47:07', 836111569)
|
|
2029
|
+
[1m[36mFixture Delete (0.4ms)[0m [1mDELETE FROM "bit_player_content_modules"[0m
|
|
2030
|
+
[1m[35mFixture Insert (2.4ms)[0m INSERT INTO "bit_player_content_modules" ("title", "position", "created_at", "updated_at", "id", "bit_player_tool_id") VALUES ('Landing', 1, '2014-04-24 16:47:07', '2014-04-24 16:47:07', 437912910, 836111569)
|
|
2031
|
+
[1m[36mFixture Insert (0.4ms)[0m [1mINSERT INTO "bit_player_content_modules" ("title", "position", "created_at", "updated_at", "id", "bit_player_tool_id") VALUES ('But wait, there''s more', 2, '2014-04-24 16:47:07', '2014-04-24 16:47:07', 511237275, 836111569)[0m
|
|
2032
|
+
[1m[35mFixture Delete (0.6ms)[0m DELETE FROM "bit_player_content_providers"
|
|
2033
|
+
[1m[36mFixture Insert (2.6ms)[0m [1mINSERT INTO "bit_player_content_providers" ("position", "type", "created_at", "updated_at", "id", "bit_player_content_module_id") VALUES (1, 'BitPlayer::ContentProviders::SlideshowProvider', '2014-04-24 16:47:07', '2014-04-24 16:47:07', 555816777, 437912910)[0m
|
|
2034
|
+
[1m[35mFixture Insert (0.5ms)[0m INSERT INTO "bit_player_content_providers" ("position", "type", "created_at", "updated_at", "id", "bit_player_content_module_id") VALUES (1, 'BitPlayer::ContentProviders::SlideshowProvider', '2014-04-24 16:47:07', '2014-04-24 16:47:07', 46790607, 511237275)
|
|
2035
|
+
[1m[36m (0.5ms)[0m [1mCOMMIT[0m
|
|
2036
|
+
[1m[35m (1.6ms)[0m ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "bit_player_content_providers" ENABLE TRIGGER ALL;ALTER TABLE "bit_player_participant_statuses" ENABLE TRIGGER ALL;ALTER TABLE "bit_player_slideshows" ENABLE TRIGGER ALL;ALTER TABLE "bit_player_slides" ENABLE TRIGGER ALL;ALTER TABLE "bit_player_tools" ENABLE TRIGGER ALL;ALTER TABLE "bit_player_content_modules" ENABLE TRIGGER ALL
|
|
2037
|
+
[1m[36m (0.3ms)[0m [1mBEGIN[0m
|
|
2038
|
+
[1m[35mBitPlayer::ContentModule Load (1.1ms)[0m SELECT "bit_player_content_modules".* FROM "bit_player_content_modules" WHERE "bit_player_content_modules"."id" = $1 LIMIT 1 [["id", 437912910]]
|
|
2039
|
+
[1m[36mBitPlayer::ContentProvider Load (1.5ms)[0m [1mSELECT "bit_player_content_providers".* FROM "bit_player_content_providers" WHERE "bit_player_content_providers"."bit_player_content_module_id" = $1 AND "bit_player_content_providers"."position" = 1 ORDER BY "bit_player_content_providers"."id" ASC LIMIT 1[0m [["bit_player_content_module_id", 437912910]]
|
|
2040
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
|
2041
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
|
2042
|
+
[1m[35mBitPlayer::ContentModule Load (0.5ms)[0m SELECT "bit_player_content_modules".* FROM "bit_player_content_modules" WHERE "bit_player_content_modules"."id" = $1 LIMIT 1 [["id", 437912910]]
|
|
2043
|
+
[1m[36mBitPlayer::ContentProvider Load (0.8ms)[0m [1mSELECT "bit_player_content_providers".* FROM "bit_player_content_providers" WHERE "bit_player_content_providers"."bit_player_content_module_id" = $1 AND "bit_player_content_providers"."position" = 8 ORDER BY "bit_player_content_providers"."id" ASC LIMIT 1[0m [["bit_player_content_module_id", 437912910]]
|
|
2044
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
2045
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
2046
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
2047
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
|
2048
|
+
[1m[35mBitPlayer::ContentModule Load (0.6ms)[0m SELECT "bit_player_content_modules".* FROM "bit_player_content_modules" WHERE "bit_player_content_modules"."bit_player_tool_id" = 1 AND "bit_player_content_modules"."position" = 1 ORDER BY "bit_player_content_modules"."id" ASC LIMIT 1
|
|
2049
|
+
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bit_player
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Eric Carty-Fickes
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-04-
|
|
11
|
+
date: 2014-04-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|