File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 110.14.0 (tbd), [ diff] [ diff-0.14.0 ]
22========================================
33
4+ * Support more complex schema changes and queries ([ #1073 ] [ ] , [ #1146 ] [ ] [ #1148 ] [ ] )
45* Support ` ATTACH ` /` DETACH ` ([ #30 ] [ ] , [ #1142 ] [ ] )
56* Support ` WITH ` clause ([ #1139 ] [ ] )
67* Add ` Value ` conformance for ` NSURL ` ([ #1110 ] [ ] , [ #1141 ] [ ] )
160161[ #866 ] : https://github.com/stephencelis/SQLite.swift/pull/866
161162[ #881 ] : https://github.com/stephencelis/SQLite.swift/pull/881
162163[ #919 ] : https://github.com/stephencelis/SQLite.swift/pull/919
164+ [ #1073 ] : https://github.com/stephencelis/SQLite.swift/issues/1073
163165[ #1075 ] : https://github.com/stephencelis/SQLite.swift/pull/1075
164166[ #1077 ] : https://github.com/stephencelis/SQLite.swift/issues/1077
165167[ #1094 ] : https://github.com/stephencelis/SQLite.swift/pull/1094
185187[ #1141 ] : https://github.com/stephencelis/SQLite.swift/pull/1141
186188[ #1142 ] : https://github.com/stephencelis/SQLite.swift/pull/1142
187189[ #1144 ] : https://github.com/stephencelis/SQLite.swift/pull/1144
190+ [ #1146 ] : https://github.com/stephencelis/SQLite.swift/pull/1146
191+ [ #1148 ] : https://github.com/stephencelis/SQLite.swift/pull/1148
Original file line number Diff line number Diff line change @@ -1514,7 +1514,7 @@ The `SchemaChanger` provides an alternative API to add new columns:
15141514let newColumn = ColumnDefinition (
15151515 name : " new_text_column" ,
15161516 type : .TEXT ,
1517- nullable : true ,
1517+ nullable : true ,
15181518 defaultValue : .stringLiteral (" foo" )
15191519)
15201520
You can’t perform that action at this time.
0 commit comments