File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 2323 ],
2424 "require" : {
2525 "php" : " ^7.0" ,
26- "illuminate/config" : " >=5.5.0 || >=6.0.0 " ,
27- "illuminate/database" : " >=5.5.0 || >=6.0.0 " ,
28- "illuminate/support" : " >=5.5.0 || >=6.0.0 " ,
29- "kalnoy/nestedset" : " >=4.3 || >=5.0 .0"
26+ "illuminate/config" : " >=5.5.0" ,
27+ "illuminate/database" : " >=5.5.0" ,
28+ "illuminate/support" : " >=5.5.0" ,
29+ "kalnoy/nestedset" : " ^5 .0"
3030 },
3131 "require-dev" : {
3232 "codedungeon/phpunit-result-printer" : " ^0.4.4 || ^0.26.0" ,
3333 "friendsofphp/php-cs-fixer" : " ^1.11 || ^2.0.0" ,
3434 "mockery/mockery" : " ^0.9.4 || ^1.0.0" ,
3535 "orchestra/database" : " ~3.5.0 || ~4.0.0" ,
3636 "orchestra/testbench" : " ~3.5.0 || ~4.0.0" ,
37- "phpunit/phpunit" : " ^6.2 || ^7.0 || ^8.0" ,
37+ "phpunit/phpunit" : " ^6.2 || ^7.0| ^8.0" ,
3838 "squizlabs/php_codesniffer" : " 3.*" ,
3939 "scrutinizer/ocular" : " ^1.3"
4040 },
Original file line number Diff line number Diff line change @@ -17,15 +17,15 @@ public function up()
1717 $ connection = config ('categorizable.connection ' );
1818
1919 Schema::connection ($ connection )->create ('categories ' , function (Blueprint $ table ) {
20- $ table ->increments ('id ' );
20+ $ table ->bigIncrements ('id ' );
2121 $ table ->string ('name ' );
2222
2323 $ table ->nestedSet ();
2424 $ table ->timestamps ();
2525 });
2626
2727 Schema::connection ($ connection )->create ('categorizable ' , function (Blueprint $ table ) {
28- $ table ->increments ('id ' );
28+ $ table ->bigIncrements ('id ' );
2929 $ table ->unsignedInteger ('category_id ' );
3030 $ table ->nullableMorphs ('categorizable ' );
3131
You can’t perform that action at this time.
0 commit comments