Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | public function up() |
||
14 | { |
||
15 | Schema::create('anggarans', function(Blueprint $table) { |
||
16 | $table->increments('id'); |
||
17 | $table->integer('user_id'); |
||
18 | $table->integer('group_egovernment_id'); |
||
19 | $table->integer('sector_egovernment_id'); |
||
20 | $table->string('label'); |
||
21 | $table->string('description'); |
||
22 | $table->string('link'); |
||
23 | $table->timestamps(); |
||
24 | $table->softDeletes(); |
||
25 | }); |
||
38 |