v6 update

This commit is contained in:
Mohit Panjwani
2022-01-10 16:06:17 +05:30
parent b770e6277f
commit bdea879273
722 changed files with 19047 additions and 9186 deletions

View File

@ -0,0 +1,40 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateTransactionsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('transactions', function (Blueprint $table) {
$table->id();
$table->string('transaction_id')->nullable();
$table->string('unique_hash')->nullable();
$table->string('type')->nullable();
$table->string('status');
$table->dateTime('transaction_date');
$table->integer('company_id')->unsigned()->nullable();
$table->foreign('company_id')->references('id')->on('companies');
$table->unsignedInteger('invoice_id');
$table->foreign('invoice_id')->references('id')->on('invoices');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('transactions');
}
}

View File

@ -0,0 +1,33 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AddTransactionIdToPaymentsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('payments', function (Blueprint $table) {
$table->unsignedBigInteger('transaction_id')->nullable();
$table->foreign('transaction_id')->references('id')->on('transactions');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('payments', function (Blueprint $table) {
$table->dropColumn('transaction_id');
});
}
}

View File

@ -0,0 +1,51 @@
<?php
use Crater\Models\PaymentMethod;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AddTypeToPaymentMethodsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('payment_methods', function (Blueprint $table) {
$table->string('driver')->nullable();
$table->enum('type', ['GENERAL', 'MODULE'])->default(PaymentMethod::TYPE_GENERAL);
$table->json('settings')->nullable();
$table->boolean('active')->default(false);
$table->boolean('use_test_env')->default(false);
});
$paymentMethods = PaymentMethod::all();
if ($paymentMethods) {
foreach ($paymentMethods as $paymentMethod) {
$paymentMethod->type = PaymentMethod::TYPE_GENERAL;
$paymentMethod->save();
}
}
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('payment_methods', function (Blueprint $table) {
$table->dropColumn([
'driver',
'type',
'settings',
'active'
]);
});
}
}

View File

@ -0,0 +1,34 @@
<?php
use Crater\Models\Payment;
use Illuminate\Database\Migrations\Migration;
class CalculateBaseAmountOfPaymentsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
$payments = Payment::where('exchange_rate', '<>', null)->get();
if ($payments) {
foreach ($payments as $payment) {
$payment->base_amount = $payment->exchange_rate * $payment->amount;
$payment->save();
}
}
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}

View File

@ -0,0 +1,50 @@
<?php
use Crater\Models\Company;
use Crater\Models\CompanySetting;
use Crater\Models\User;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AddFieldsToEmailLogsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('email_logs', function (Blueprint $table) {
$table->string('token')->unique()->nullable();
});
$user = User::where('role', 'super admin')->first();
if ($user) {
$settings = [
'automatically_expire_public_links' => 'Yes',
'link_expiry_days' => 7
];
$companies = Company::all();
foreach ($companies as $company) {
CompanySetting::setSettings($settings, $company->id);
}
}
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('email_logs', function (Blueprint $table) {
$table->dropColumn('token');
});
}
}

View File

@ -0,0 +1,35 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateModulesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('modules', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('version');
$table->boolean('installed')->default(false);
$table->boolean('enabled')->default(false);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('modules');
}
}

View File

@ -0,0 +1,40 @@
<?php
use Crater\Models\Customer;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class ChangeEnablePortalFieldOfCustomersTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('customers', function (Blueprint $table) {
$table->boolean('enable_portal')->default(false)->change();
});
$customers = Customer::all();
if ($customers) {
$customers->map(function ($customer) {
$customer->enable_portal = false;
$customer->save();
});
}
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}

View File

@ -0,0 +1,42 @@
<?php
use Crater\Models\TaxType;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AddTypeToTaxTypesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('tax_types', function (Blueprint $table) {
$table->enum('type', ['GENERAL', 'MODULE'])->default(TaxType::TYPE_GENERAL);
});
$taxTypes = TaxType::all();
if ($taxTypes) {
foreach ($taxTypes as $taxType) {
$taxType->type = TaxType::TYPE_GENERAL;
$taxType->save();
}
}
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('tax_types', function (Blueprint $table) {
$table->dropColumn('type');
});
}
}

View File

@ -0,0 +1,36 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AddSalesTaxFieldsToInvoicesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('invoices', function (Blueprint $table) {
$table->string('sales_tax_type')->nullable();
$table->string('sales_tax_address_type')->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('invoices', function (Blueprint $table) {
$table->dropColumn([
'sales_tax_type',
'sales_tax_address_type',
]);
});
}
}

View File

@ -0,0 +1,36 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AddSalesTaxFieldsToEstimatesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('estimates', function (Blueprint $table) {
$table->string('sales_tax_type')->nullable();
$table->string('sales_tax_address_type')->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('estimates', function (Blueprint $table) {
$table->dropColumn([
'sales_tax_type',
'sales_tax_address_type',
]);
});
}
}

View File

@ -0,0 +1,36 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AddSalesTaxFieldsToRecurringInvoicesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('recurring_invoices', function (Blueprint $table) {
$table->string('sales_tax_type')->nullable();
$table->string('sales_tax_address_type')->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('recurring_invoices', function (Blueprint $table) {
$table->dropColumn([
'sales_tax_type',
'sales_tax_address_type',
]);
});
}
}

View File

@ -0,0 +1,27 @@
<?php
use Crater\Models\Setting;
use Illuminate\Database\Migrations\Migration;
class UpdateCraterVersion600 extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Setting::setSetting('version', '6.0.0');
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}

View File

@ -0,0 +1,35 @@
<?php
use Crater\Models\Company;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Support\Str;
class AddSlugToCompanies extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
$companies = Company::where('slug', null)->get();
if ($companies) {
foreach ($companies as $company) {
$company->slug = Str::slug($company->name);
$company->save();
}
}
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}