| Conditions | 1 |
| Paths | 1 |
| Total Lines | 16 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | public function up() |
||
| 24 | { |
||
| 25 | Schema::create('income_category', function (Blueprint $table) { |
||
| 26 | $table->bigIncrements('id'); |
||
| 27 | $table->string('category'); |
||
| 28 | $table->string('slug')->nullable(); |
||
| 29 | |||
| 30 | $table->text('description')->nullable(); |
||
| 31 | $table->date('date'); |
||
| 32 | |||
| 33 | |||
| 34 | |||
| 35 | |||
| 36 | $table->timestamps(); |
||
| 37 | }); |
||
| 38 | } |
||
| 39 | |||
| 50 |