01-09-2017 01:56 PM
Is there a provided SQL file to create the tables and columns for the TestStand 2016 default schema? I have not been able to find one.
I want to create an SQL file to add the columns to the tables with the changes from 2013.
Stephen
Solved! Go to Solution.
01-09-2017 02:20 PM
I found "MySQL Create Insert Result Tables.sql" in:
C:\Program Files (x86)\National Instruments\TestStand 2016\Components\Models\TestStandModels\Database
01-09-2017 02:23 PM
So it looks like the following should convert a MySQL database for TestStand 2013 to version 2016.
ALTER TABLE PROP_NUMERICLIMIT ADD THRESHOLD_TYPE VARCHAR(32); ALTER TABLE PROP_NUMERICLIMIT ADD NOMINAL_VALUE DOUBLE; ALTER TABLE PROP_NUMERICLIMIT ADD UPPER_THRESHOLD DOUBLE; ALTER TABLE PROP_NUMERICLIMIT ADD LOWER_THRESHOLD DOUBLE;