Skip to content

Commit ae406af

Browse files
committed
WS
1 parent ddb8049 commit ae406af

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/ISSUE_TEMPLATE.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
> Issues are used to track bugs and feature requests.
1+
> Issues are used to track bugs and feature requests.
22
> Need help or have a general question? Ask on Stack Overflow (tag sqlite.swift).
33
44
## Build Information
55

66
- Include the SQLite.swift version, commit or branch experiencing the issue.
77
- 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?
99
- manual
1010
- CocoaPods
1111
- Carthage

Tests/SQLiteTests/TestHelpers.swift

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ class SQLiteTestCase : XCTestCase {
2020
func CreateUsersTable() {
2121
try! db.execute("""
2222
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,
2626
salary REAL,
2727
admin BOOLEAN NOT NULL DEFAULT 0 CHECK (admin IN (0, 1)),
2828
manager_id INTEGER,

0 commit comments

Comments
 (0)