Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Releases: ngrash/sqlcup

v0.4.2

05 Feb 15:55
Compare
Choose a tag to compare

This release corrects how entity names with underscores are capitalized. Previously zipcode_import/zipcode_imports became Zipcode_import and Zipcode_imports. Now it becomes ZipcodeImport and ZipcodeImports.

v0.4.1

05 Feb 13:36
Compare
Choose a tag to compare

This release improves documentation and error messages.

v0.4.0

04 Feb 20:15
Compare
Choose a tag to compare

This release changes the smart column separator to @ because some shells interpret # as a comment.

v0.3.0

04 Feb 19:45
Compare
Choose a tag to compare

This release adds <smart-column> parsing. From the inline help:

A <smart-column> is a shortcut for common column definitions. It must be of
the form <name>#<tag>#<tag>...

A <tag> adds either a data type or a constraint to a <smart-column>.

      #id
          Make this column the primary key. Omitting column type and <name>
          for an #id column creates an INTEGER PRIMARY KEY named 'id'.

      #text, #int, #float, #double, #datetime, #blob
          Set the column type.

      #unique
          Add a UNIQUE constraint.

      #null
          Omit NOT NULL constraint.

v0.2.0

04 Feb 11:49
Compare
Choose a tag to compare

This release add an -only flag to limit output to queries or schema only.

v0.1.0

03 Feb 22:54
Compare
Choose a tag to compare

Initial release of sqlcup.