toCreate property

String get toCreate

Implementation

String get toCreate => [
      name,
      type.name.toUpperCase(),
      if (primaryKey) "PRIMARY KEY",
      if (autoIncrement) "AUTOINCREMENT",
      if (unique) "UNIQUE",
      if (notNull) "NOT NULL",
      if (canPutDefaultValue) "DEFAULT $getCorrectDefaultValue"
    ].join(" ");