Some checks are pending
Module sub-split / Sub-split (push) Waiting to run
- Base: wintercms/winter branch 1.2 (full framework) - Theme vivespos: Canvas 7 + Bootstrap 5 CDN, custom CSS - Layout: deferred GTM/GA4 tracking, JSON-LD SoftwareApplication - Partials: hero (offline-first), features, modes (offline/nube toggle), screenshots, pricing (3 planes), comparison, FAQ, CTA - Plugin VivesPOS.Site with ContactForm - Dockerfile: PHP 8.2 Apache, port 80, healthcheck - Added winter/wn-pages, blog, sitemap, seo plugins - Active theme set to vivespos
49 lines
1.2 KiB
PHP
49 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace Backend\Tests\Fixtures\Models;
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
use Winter\Storm\Database\Model;
|
|
use Winter\Storm\Database\Traits\Sortable;
|
|
|
|
/**
|
|
* Self-contained Sortable model fixture for list reordering tests.
|
|
*
|
|
* Owns its own table so the backend test suite has no dependency on any plugin.
|
|
*/
|
|
class SortableFixture extends Model
|
|
{
|
|
use Sortable;
|
|
|
|
public $table = 'backend_test_sortable_fixtures';
|
|
|
|
protected $guarded = [];
|
|
|
|
public $timestamps = false;
|
|
|
|
/**
|
|
* Create the backing table if it does not already exist.
|
|
*/
|
|
public static function migrateUp(): void
|
|
{
|
|
if (Schema::hasTable('backend_test_sortable_fixtures')) {
|
|
return;
|
|
}
|
|
|
|
Schema::create('backend_test_sortable_fixtures', function ($table) {
|
|
$table->increments('id');
|
|
$table->string('name')->nullable();
|
|
$table->string('label')->nullable();
|
|
$table->integer('sort_order')->nullable();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Drop the backing table.
|
|
*/
|
|
public static function migrateDown(): void
|
|
{
|
|
Schema::dropIfExists('backend_test_sortable_fixtures');
|
|
}
|
|
}
|