mirror of
https://github.com/cp6/my-idlers.git
synced 2025-06-06 09:08:10 +00:00
Updated README.md
This commit is contained in:
parent
79cc41c729
commit
2cd623d49e
2 changed files with 6 additions and 5 deletions
|
@ -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:
|
||||||
|
|
||||||
|
|
|
@ -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();
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Reference in a new issue