Skip to content
This repository has been archived by the owner on Jul 13, 2020. It is now read-only.

Commit

Permalink
Merge pull request #175 from richarth/patch-1
Browse files Browse the repository at this point in the history
Value of SQLite modifier NOT_NULL should be "NOT NULL"
  • Loading branch information
yanex committed Apr 19, 2016
2 parents c33e4dc + 1f69edc commit f93e98d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dsl/static/src/sqlite/sqlTypes.kt
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ fun FOREIGN_KEY(columnName: String, referenceTable: String, referenceColumn: Str
}

val PRIMARY_KEY: SqlTypeModifier = SqlTypeModifierImpl("PRIMARY KEY")
val NOT_NULL: SqlTypeModifier = SqlTypeModifierImpl("NOT_NULL")
val NOT_NULL: SqlTypeModifier = SqlTypeModifierImpl("NOT NULL")
val AUTOINCREMENT: SqlTypeModifier = SqlTypeModifierImpl("AUTOINCREMENT")
val UNIQUE: SqlTypeModifier = SqlTypeModifierImpl("UNIQUE")

Expand Down

0 comments on commit f93e98d

Please sign in to comment.