22 lines
483 B
PHP
22 lines
483 B
PHP
<?php
|
|
|
|
namespace App\Database\Migrations;
|
|
|
|
use CodeIgniter\Database\Migration;
|
|
|
|
class CreateInvoiceLines extends Migration
|
|
{
|
|
public function up()
|
|
{
|
|
// invoice_lines was removed from the financial model. Keep this
|
|
// migration class as a no-op so older migration histories remain valid.
|
|
}
|
|
|
|
public function down()
|
|
{
|
|
if ($this->db->tableExists('invoice_lines')) {
|
|
$this->forge->dropTable('invoice_lines', true);
|
|
}
|
|
}
|
|
}
|