DomainVerification.php 281 B

12345678910111213141516171819
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. use Pixelfed\Snowflake\HasSnowflakePrimary;
  5. class DomainVerification extends Model
  6. {
  7. use HasSnowflakePrimary;
  8. /**
  9. * Indicates if the IDs are auto-incrementing.
  10. *
  11. * @var bool
  12. */
  13. public $incrementing = false;
  14. }