UpdatedAtColumn constructor

const UpdatedAtColumn([
  1. String? name = 'updated_at',
  2. bool isNullable = true,
  3. bool isGuarded = true
])

Implementation

const UpdatedAtColumn([
  String? name = 'updated_at',
  bool isNullable = true,
  bool isGuarded = true,
]) : super(name, isNullable: isNullable, isGuarded: isGuarded);