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