Open maicol07 opened 2 years ago
Are you able to open a PR and add these?
It would actually be pretty straight forward:
Yes, I can look at them
Thanks
@maicol07 macAddress
already exists here's the code in orm
def macaddr(self, column, length=255, nullable=False):
"""Sets a column to be the macaddr representation for the table.
Arguments:
column {string} -- The column name.
Keyword Arguments:
nullable {bool} -- Whether the column is nullable. (default: {False})
Returns:
self
"""
self._last_column = self.table.add_column(
column, "macaddr", length=255, nullable=nullable
)
return self
@maicol07
macAddress
already exists here's the code inorm
def macaddr(self, column, length=255, nullable=False): """Sets a column to be the macaddr representation for the table. Arguments: column {string} -- The column name. Keyword Arguments: nullable {bool} -- Whether the column is nullable. (default: {False}) Returns: self """ self._last_column = self.table.add_column( column, "macaddr", length=255, nullable=nullable ) return self
Thanks! Checked the item in the list!
Describe the feature as you'd like to see it Missing table methods from Laravel docs:
datetimeTz
foreignId
- #752foreignIdFor
- #752foreignUuid
- #752geometryCollection
id
- #752ipAddress
lineString
macAddress
mediumIncrements
mediumText
morphs
multiLineString
multiPoint
multiPolygon
nullableMorphs
nullableTimestamps
nullableUuidMorphs
polygon
rememberToken
set
smallIncrements
softDeletesTz
timeTz
timestampTz
timestampsTz
tinyText
#771unsignedBigInteger
- #752unsignedDecimal
#771unsignedMediumInteger
unsignedSmallInteger
unsignedTinyInteger
uuidMorphs
year
What do we currently have to do now? Just add these methods