Skip to content

Instantly share code, notes, and snippets.

@jvanhoesen
Created April 13, 2021 12:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jvanhoesen/15bff372f40aa7e2d68373761d8649a6 to your computer and use it in GitHub Desktop.
Save jvanhoesen/15bff372f40aa7e2d68373761d8649a6 to your computer and use it in GitHub Desktop.
Defines tables and fields to be created on install
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<database ComponentName="Application" ComponentType="Primary" version="19.201.0070">
<table name="Table1">
<col name="Field1" type="Int" default="Zero" />
<col name="Field2" type="NVarChar(10)" />
<index name="Table1_PK" clustered="true" primary="true" unique="true">
<col name="Field1" />
<col name="Field2" />
</index>
</table>
</database>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment