File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
- > Issues are used to track bugs and feature requests.
1
+ > Issues are used to track bugs and feature requests.
2
2
> Need help or have a general question? Ask on Stack Overflow (tag sqlite.swift).
3
3
4
4
## Build Information
5
5
6
6
- Include the SQLite.swift version, commit or branch experiencing the issue.
7
7
- Mention Xcode and OS X versions affected.
8
- - How do do you integrate SQLite.swift in your project?
8
+ - How do do you integrate SQLite.swift in your project?
9
9
- manual
10
10
- CocoaPods
11
11
- Carthage
Original file line number Diff line number Diff line change @@ -20,9 +20,9 @@ class SQLiteTestCase : XCTestCase {
20
20
func CreateUsersTable( ) {
21
21
try ! db. execute ( """
22
22
CREATE TABLE users (
23
- id INTEGER PRIMARY KEY,
24
- email TEXT NOT NULL UNIQUE,
25
- age INTEGER,
23
+ id INTEGER PRIMARY KEY,
24
+ email TEXT NOT NULL UNIQUE,
25
+ age INTEGER,
26
26
salary REAL,
27
27
admin BOOLEAN NOT NULL DEFAULT 0 CHECK (admin IN (0, 1)),
28
28
manager_id INTEGER,
You can’t perform that action at this time.
0 commit comments