harp-orm / random-key
Generate a random key for a model property
0.3.0
2014-07-14 09:24 UTC
Requires
- php: >=5.4.0
- harp-orm/harp: ~0.3.0
This package is auto-updated.
Last update: 2024-10-21 22:10:43 UTC
README
Generate a random unique key for a model property
Usage
// Model Class
use Harp\Harp\AbstractModel
use Harp\RandomKey\RandomKeyTrait
class User extends AbstractModel
{
use RandomKeyTrat;
public static function initialize($config)
{
// ...
RandomKeyTrait::initialize($config);
}
}
Database Table:
┌─────────────────────────┐
│ Table: User │
├─────────────┬───────────┤
│ id │ ingeter │
│ name │ string │
│ uniqueKey* │ string │
└─────────────┴───────────┘
* Required fields
License
Copyright (c) 2014, Clippings Ltd. Developed by Ivan Kerin
Under BSD-3-Clause license, read LICENSE file.