Updated README.md

This commit is contained in:
cp6 2024-12-09 23:15:03 +11:00
parent 79cc41c729
commit 2cd623d49e
2 changed files with 6 additions and 5 deletions

View file

@ -34,13 +34,14 @@ Currently seeking a project sponsor
* Added several updated OS versions to OsSeeder * Added several updated OS versions to OsSeeder
* Added Font awesome Brands webfont * Added Font awesome Brands webfont
* Added IP whois data columns to the ips table * Added IP whois data columns to the ips table
* Added IP whois data fetching and updating DB
* Added Note to API * Added Note to API
* Fixed OS icons not loading in servers index page * Fixed OS icons not loading in servers index page
* Fixed Settings being called without being created (existing) * Fixed Settings being called without being created (existing)
* Fixed issue with OS: `Call to a member function toJson() on array` * Fixed issue with OS: `Call to a member function toJson() on array`
* Fixed due in (days) column showing a massive float
* Removed 1 user being seeded * Removed 1 user being seeded
* Removed doctrine/dbal * Removed doctrine/dbal
* Removed X
#### Please run the following if updating from an existing install: #### Please run the following if updating from an existing install:

View file

@ -18,10 +18,10 @@ class CreatePricingTable extends Migration
$table->tinyInteger('service_type'); $table->tinyInteger('service_type');
$table->tinyInteger('active')->default(1); $table->tinyInteger('active')->default(1);
$table->char('currency', 3); $table->char('currency', 3);
$table->decimal('price',10,2); $table->decimal('price', 10, 2);
$table->tinyInteger('term'); $table->tinyInteger('term');
$table->decimal('as_usd',10,2); $table->decimal('as_usd', 10, 2);
$table->decimal('usd_per_month',10,2); $table->decimal('usd_per_month', 10, 2);
$table->date('next_due_date'); $table->date('next_due_date');
$table->timestamps(); $table->timestamps();
}); });
@ -34,6 +34,6 @@ class CreatePricingTable extends Migration
*/ */
public function down() public function down()
{ {
Schema::dropIfExists('pricings'); Schema::dropIfExists('pricings');
} }
} }