| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | public function up() |
||
| 14 | { |
||
| 15 | Schema::create('cms_users', function(Blueprint $table) |
||
| 16 | { |
||
| 17 | $table->increments('id'); |
||
| 18 | $table->string('name', 50)->nullable(); |
||
| 19 | $table->string('photo')->nullable(); |
||
| 20 | $table->string('email', 50)->nullable(); |
||
| 21 | $table->string('password')->nullable(); |
||
| 22 | $table->integer('id_cms_privileges')->nullable(); |
||
| 23 | $table->timestamps(); |
||
| 24 | $table->string('status', 50)->nullable(); |
||
| 25 | }); |
||
| 40 |