Page Menu
Home
Musing Studio
Search
Configure Global Search
Log In
Files
F13894183
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Subscribers
None
View Options
diff --git a/Shared/Models/LocalStorageModel.xcdatamodeld/LocalStorageModel.xcdatamodel/contents b/Shared/Models/LocalStorageModel.xcdatamodeld/LocalStorageModel.xcdatamodel/contents
index 25e512d..221ba10 100644
--- a/Shared/Models/LocalStorageModel.xcdatamodeld/LocalStorageModel.xcdatamodel/contents
+++ b/Shared/Models/LocalStorageModel.xcdatamodeld/LocalStorageModel.xcdatamodel/contents
@@ -1,16 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<model type="com.apple.IDECoreDataModeler.DataModel" documentVersion="1.0" lastSavedToolsVersion="17189" systemVersion="20A5354i" minimumToolsVersion="Automatic" sourceLanguage="Swift" userDefinedModelVersionIdentifier="">
<entity name="WFACollection" representedClassName="WFACollection" syncable="YES">
<attribute name="alias" optional="YES" attributeType="String"/>
<attribute name="blogDescription" optional="YES" attributeType="String"/>
<attribute name="email" optional="YES" attributeType="String"/>
<attribute name="isPublic" optional="YES" attributeType="Boolean" usesScalarValueType="YES"/>
<attribute name="styleSheet" optional="YES" attributeType="String"/>
<attribute name="title" attributeType="String"/>
<attribute name="url" optional="YES" attributeType="String"/>
- <attribute name="views" optional="YES" attributeType="Integer 16" defaultValueString="0" usesScalarValueType="YES"/>
+ <uniquenessConstraints>
+ <uniquenessConstraint>
+ <constraint value="alias"/>
+ </uniquenessConstraint>
+ </uniquenessConstraints>
</entity>
<elements>
- <element name="WFACollection" positionX="-18" positionY="27" width="128" height="149"/>
+ <element name="WFACollection" positionX="-18" positionY="27" width="128" height="134"/>
</elements>
</model>
\ No newline at end of file
diff --git a/WFACollection+CoreDataProperties.swift b/WFACollection+CoreDataProperties.swift
index 07c7271..4a578b2 100644
--- a/WFACollection+CoreDataProperties.swift
+++ b/WFACollection+CoreDataProperties.swift
@@ -1,23 +1,22 @@
import Foundation
import CoreData
extension WFACollection {
@nonobjc public class func fetchRequest() -> NSFetchRequest<WFACollection> {
return NSFetchRequest<WFACollection>(entityName: "WFACollection")
}
@NSManaged public var alias: String?
- @NSManaged public var title: String?
@NSManaged public var blogDescription: String?
- @NSManaged public var styleSheet: String?
- @NSManaged public var isPublic: Bool
- @NSManaged public var views: Int16
@NSManaged public var email: String?
+ @NSManaged public var isPublic: Bool
+ @NSManaged public var styleSheet: String?
+ @NSManaged public var title: String?
@NSManaged public var url: String?
}
-extension WFACollection: Identifiable {
+extension WFACollection : Identifiable {
}
File Metadata
Details
Attached
Mime Type
text/x-diff
Expires
Thu, Mar 12, 10:44 PM (1 d, 11 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3653735
Attached To
rWFSUI WriteFreely SwiftUI
Event Timeline
Log In to Comment