Hi I'm using the node package mssql, I'm adding a new table like this:
var companyTable = new sql.Table("companies2");
companyTable.create = true;
companyTable.columns.add('id', sql.Int);
companyTable.columns.add('company_name', sql.VarChar(100));
companyTable.rows.add(sql.Int, 'Comapny1');
companyTable.rows.add(sql.Int, 'Comapny2');
var createTable = new sql.Request();
await createTable.bulk(companyTable);
I would like the ID column to be an Identity column Does anyone know if it's possible?