INT32 constructor

const INT32({
  1. String? name,
  2. bool primaryKey = false,
  3. bool notNull = false,
  4. int autoInc = 0,
  5. bool unique = false,
  6. bool index = false,
  7. String? check,
  8. String? uniqueName,
  9. String? defaultValue,
  10. String? extras,
})

Implementation

const INT32({
  super.name,
  super.primaryKey = false,
  super.notNull = false,
  super.autoInc = 0,
  super.unique = false,
  super.index = false,
  super.check,
  super.uniqueName,
  super.defaultValue,
  super.extras,
}) : super(type: autoInc > 0 ? "SERIAL" : "INTEGER");