build method

dynamic build()

Implementation

build() {
  String table = "CREATE TABLE $name (";

  table += this.columnsFields().join(',');

  table += ");";

  if (this.initialInserts != null) {
    if (this.execInitialInserts) {
      table += this.buildInserts().join('');
    }
  }

  return table;
}