Skip to content

Commit

Permalink
Merge pull request #249 from sabracrolleton/master
Browse files Browse the repository at this point in the history
Correct typo in docs using generated-as-identity
  • Loading branch information
sabracrolleton authored Aug 28, 2020
2 parents b4d139c + 07da313 commit 731fdcf
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 8 deletions.
16 changes: 12 additions & 4 deletions doc/create-tables.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions doc/create-tables.org
Original file line number Diff line number Diff line change
Expand Up @@ -213,19 +213,19 @@ Note: The data type used for identity columns must be one of smallint, int or bi

#+BEGIN_SRC lisp
(query (:create-table 'color
((color-id :type int :generated-as-identity-always)
((color-id :type int :generated-as-identity-always t)
(color-name :type varchar))))

(query (:create-table 'color
((color-id :type int :generated-as-identity-by-default)
((color-id :type int :generated-as-identity-by-default t)
(color-name :type varchar))))

(query (:create-table 'color
((color-id :type int :identity-always)
((color-id :type int :identity-always t)
(color-name :type varchar))))

(query (:create-table 'color
((color-id :type int :identity-by-default)
((color-id :type int :identity-by-default t)
(color-name :type varchar))))
#+END_SRC

Expand Down

0 comments on commit 731fdcf

Please sign in to comment.