declare_schema 1.2.3.pre.ga.8 → 1.2.3.pre.ga.9
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e09beef167920318bac9b447f693d1301cd3d50bc9299dc8fd815de987e08977
|
4
|
+
data.tar.gz: de03405c8b47000f1946dba49376753ecea9fb1a90dac78c2bf816b8eb2818b4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0d77e6527a3583e1c7a7fddb446f88a226218f74ff0f596f278f6f496570a3dc139cae28a3ce207cda37e365c83107e4c4c0832de868c357d0b21f752f7fb09f
|
7
|
+
data.tar.gz: 4f4fdff9bf470cf623de038e596462073078838a18d4a7ad1d8def80ee4178aba99a332e36c6b56d6caedb7094c4ec54e084bcaa39dce1a3393fde0a82d43fc9
|
data/Gemfile.lock
CHANGED
@@ -53,7 +53,7 @@ module DeclareSchema
|
|
53
53
|
|
54
54
|
def index_definitions_with_primary_key
|
55
55
|
[
|
56
|
-
IndexDefinition.new(self, foreign_keys, unique: true, name:
|
56
|
+
IndexDefinition.new(self, foreign_keys, unique: true, name: Model::IndexDefinition::PRIMARY_KEY_NAME), # creates a primary composite key on both foreign keys
|
57
57
|
IndexDefinition.new(self, foreign_keys.last) # not unique by itself; combines with primary key to be unique
|
58
58
|
]
|
59
59
|
end
|
@@ -102,7 +102,7 @@ RSpec.describe DeclareSchema::Model::HabtmModelShim do
|
|
102
102
|
expect(result.size).to eq(2), result.inspect
|
103
103
|
|
104
104
|
expect(result.first).to be_a(::DeclareSchema::Model::IndexDefinition)
|
105
|
-
expect(result.first.name).to eq('PRIMARY
|
105
|
+
expect(result.first.name).to eq('PRIMARY')
|
106
106
|
expect(result.first.fields).to eq(['parent_1_id', 'parent_2_id'])
|
107
107
|
expect(result.first.unique).to be_truthy
|
108
108
|
end
|
@@ -127,7 +127,7 @@ RSpec.describe DeclareSchema::Model::HabtmModelShim do
|
|
127
127
|
result = subject.index_definitions_with_primary_key
|
128
128
|
expect(result.size).to eq(2), result.inspect
|
129
129
|
expect(result.first).to be_a(::DeclareSchema::Model::IndexDefinition)
|
130
|
-
expect(result.first.name).to eq('PRIMARY
|
130
|
+
expect(result.first.name).to eq('PRIMARY')
|
131
131
|
expect(result.first.fields).to eq(['advertiser_campaign', 'tracking_pixel'])
|
132
132
|
expect(result.first.unique).to be_truthy
|
133
133
|
end
|