| Total Complexity | 3 |
| Total Lines | 34 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class install_invite_table extends Migration implements MigrationInterface |
||
|
|
|||
| 10 | { |
||
| 11 | /** |
||
| 12 | * Execute actions when migration is up |
||
| 13 | * @return void |
||
| 14 | */ |
||
| 15 | public function up() |
||
| 16 | { |
||
| 17 | $this->getSchema()->create('invites', function($table) { |
||
| 18 | $table->increments('id'); |
||
| 19 | $table->string('token', 128)->unique(); |
||
| 20 | $table->string('email')->unique(); |
||
| 21 | $table->timestamps(); |
||
| 22 | }); |
||
| 23 | parent::up(); |
||
| 24 | } |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Seed created table via up() method with some data |
||
| 28 | * @return void |
||
| 29 | */ |
||
| 30 | public function seed() |
||
| 31 | { |
||
| 32 | |||
| 33 | } |
||
| 34 | |||
| 35 | /** |
||
| 36 | * Execute actions when migration is down |
||
| 37 | * @return void |
||
| 38 | */ |
||
| 39 | public function down() |
||
| 43 | } |
||
| 44 | } |
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.