-
-
Save jvanhoesen/15bff372f40aa7e2d68373761d8649a6 to your computer and use it in GitHub Desktop.
Defines tables and fields to be created on install
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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