Skip to content

Commit

Permalink
use sql foreign key action
Browse files Browse the repository at this point in the history
  • Loading branch information
tanner0101 committed Jun 21, 2018
1 parent 2f04c08 commit 3a73152
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Sources/SQLite/SQL/SQLiteGeneric.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@ public typealias SQLiteColumnIdentifier = GenericSQLColumnIdentifier<
SQLiteTableIdentifier, SQLiteIdentifier
>

/// See `SQLQuery`.
public typealias SQLiteConflictResolution = GenericSQLConflictResolution

/// See `SQLQuery`.
public typealias SQLiteDelete = GenericSQLDelete<
SQLiteTableIdentifier, SQLiteExpression
Expand All @@ -45,9 +42,12 @@ public typealias SQLiteExpression = GenericSQLExpression<

/// See `SQLQuery`.
public typealias SQLiteForeignKey = GenericSQLForeignKey<
SQLiteTableIdentifier, SQLiteIdentifier, SQLiteConflictResolution
SQLiteTableIdentifier, SQLiteIdentifier, SQLiteForeignKeyAction
>

/// See `SQLQuery`.
public typealias SQLiteForeignKeyAction = GenericSQLForeignKeyAction

/// See `SQLQuery`.
public typealias SQLiteGroupBy = GenericSQLGroupBy<SQLiteExpression>

Expand Down

0 comments on commit 3a73152

Please sign in to comment.