push_type_wysiwyg 0.5.0.alpha.2 → 0.5.0.alpha.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4721174865404a71c6879a7eff8ff81e90203f7c
4
- data.tar.gz: e8fceb16d0e956a5b08422fe8c1191a561160d01
3
+ metadata.gz: c8e77f6d38fc223ebc7208d65b00a2aabaa9b98b
4
+ data.tar.gz: f1c65db88e7b325f6882aa76b27a93de924bc19e
5
5
  SHA512:
6
- metadata.gz: 888f00c458ee08df510ed62d8006f718801fac338e037b3693b430421e1692fd647e285ed1699e177c2c707b75f82ec7ddd2cf3bdba75c3dc38d0d3908381906
7
- data.tar.gz: 0739c29ae14df0799999b976e6f885b0d95345616294e27c0608289ea8481706f3fe08ca0bb538b390a71553bebdb584dff52ac6befd99d9f2f3aa94e2d23bff
6
+ metadata.gz: a38c983852bddce41b16eefc36e75b4970cc10dbd54d0153a7b6c8f6557e7809b31c675301defb6aa0130659a9e6ff6c95c84795e9ebf4102a05c390497f8aec
7
+ data.tar.gz: 96ef334eb9cb70442c2066ae7e09fecc6feb463e1860a6386c713d6fa21efe53c65e46f9db9d0d42d7cba70bf11e3ad705f691a3cb372e87a0d236acb8fe09f3
@@ -33,6 +33,6 @@ PushType.setup do |config|
33
33
  # secret_access_key: ENV['SECRET_ACCESS_KEY_ID']
34
34
  # }
35
35
 
36
- # config.dragonfly_secret = 'c54537f9f7b5b95dad76f7d1b1f8574501ecdb7e3a26ee0fe7fae23aac6b2b5e'
36
+ # config.dragonfly_secret = '5ef0e099b09eba4846cd410863e632d80403d5990a21f215f46ec1bd94e957f8'
37
37
 
38
38
  end
@@ -11,10 +11,10 @@
11
11
  # if you're sharing your code publicly.
12
12
 
13
13
  development:
14
- secret_key_base: 520ac95bebf4b9b5febce932e592e24ffaa61ffee0c3a0dce18428f4ca1722900e3dc30125980c3a04cd964167b20465e698d086971411926a0a6ddc83c3a2ff
14
+ secret_key_base: f99fb74ff92023f80d1b1be90e1251d3d4107e1bcc9b37c7db50dce1f584bb4d9d805f87f037b39467f780a96e6a11675e780b460573d94b5bb7c12c6924231e
15
15
 
16
16
  test:
17
- secret_key_base: 8b52d46320e8a125b417d18d851565475b7ebf7fb5a98301bf6282739f12126caca763ee925eb52f9f684b1ee9a1fa745be32de33a189a159a8bebfdb5f5e273
17
+ secret_key_base: 0d7fbf025e0ce9e98b6fe2e861d0097c0056583762d06f9bb81c7f9cda29e88f68e4f5139f8d76d21045ab6a8b5c8c5bd0e2a2cd2d68369bf6babfcab723865d
18
18
 
19
19
  # Do not keep production secrets in the repository,
20
20
  # instead read values from the environment.
@@ -0,0 +1,7 @@
1
+ # This migration comes from push_type (originally 20150531183944)
2
+ class AddFieldStoreDefaultValues < ActiveRecord::Migration
3
+ def change
4
+ change_column :push_type_nodes, :field_store, :jsonb, default: {}, null: false
5
+ change_column :push_type_users, :field_store, :jsonb, default: {}, null: false
6
+ end
7
+ end
@@ -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: 20150429164631) do
14
+ ActiveRecord::Schema.define(version: 20150601132858) do
15
15
 
16
16
  # These are extensions that must be enabled in order to support this database
17
17
  enable_extension "plpgsql"
@@ -44,7 +44,7 @@ ActiveRecord::Schema.define(version: 20150429164631) do
44
44
  t.string "type"
45
45
  t.string "title"
46
46
  t.string "slug"
47
- t.jsonb "field_store"
47
+ t.jsonb "field_store", default: {}, null: false
48
48
  t.uuid "parent_id"
49
49
  t.integer "sort_order"
50
50
  t.integer "status"
@@ -52,8 +52,8 @@ ActiveRecord::Schema.define(version: 20150429164631) do
52
52
  t.datetime "published_to"
53
53
  t.uuid "creator_id"
54
54
  t.uuid "updater_id"
55
- t.datetime "created_at", null: false
56
- t.datetime "updated_at", null: false
55
+ t.datetime "created_at", null: false
56
+ t.datetime "updated_at", null: false
57
57
  t.datetime "deleted_at"
58
58
  end
59
59
 
@@ -79,9 +79,9 @@ ActiveRecord::Schema.define(version: 20150429164631) do
79
79
  create_table "push_type_users", id: :uuid, default: "uuid_generate_v4()", force: :cascade do |t|
80
80
  t.string "name"
81
81
  t.string "email"
82
- t.jsonb "field_store"
83
- t.datetime "created_at", null: false
84
- t.datetime "updated_at", null: false
82
+ t.jsonb "field_store", default: {}, null: false
83
+ t.datetime "created_at", null: false
84
+ t.datetime "updated_at", null: false
85
85
  end
86
86
 
87
87
  end