text
stringlengths
9
39.2M
dir
stringlengths
26
295
lang
stringclasses
185 values
created_date
timestamp[us]
updated_date
timestamp[us]
repo_name
stringlengths
1
97
repo_full_name
stringlengths
7
106
star
int64
1k
183k
len_tokens
int64
1
13.8M
```php <?php declare(strict_types=1); namespace App\Entity; use App\Enums\PermissionInterface; use Doctrine\ORM\Mapping as ORM; use JsonSerializable; #[ ORM\Entity(readOnly: true), ORM\Table(name: 'role_permissions'), ORM\UniqueConstraint(name: 'role_permission_unique_idx', columns: ['role_id', 'action_...
/content/code_sandbox/backend/src/Entity/RolePermission.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
557
```php <?php declare(strict_types=1); namespace App\Entity; use App\Entity\Interfaces\IdentifiableEntityInterface; use Carbon\CarbonImmutable; use Carbon\CarbonInterface; use DateTimeZone; use Doctrine\ORM\Mapping as ORM; use OpenApi\Attributes as OA; #[ OA\Schema(type: "object"), ORM\Entity, ORM\Table(...
/content/code_sandbox/backend/src/Entity/StationSchedule.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
1,668
```php <?php declare(strict_types=1); namespace App\Entity; use App\Entity\Interfaces\EntityGroupsInterface; use App\Entity\Interfaces\IdentifiableEntityInterface; use App\Security\SplitToken; use Azura\Normalizer\Attributes\DeepNormalize; use Doctrine\ORM\Mapping as ORM; use Stringable; use Symfony\Component\Serial...
/content/code_sandbox/backend/src/Entity/ApiKey.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
387
```php <?php declare(strict_types=1); namespace App\Entity; use App\Utilities\Strings; use App\Utilities\Types; use LogicException; class StationFrontendConfiguration extends AbstractStationConfiguration { public function __construct(array $elements = []) { // Generate defaults if not set. $...
/content/code_sandbox/backend/src/Entity/StationFrontendConfiguration.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
1,170
```php <?php declare(strict_types=1); namespace App\Entity; use Doctrine\Inflector\Inflector; use Doctrine\Inflector\InflectorFactory; use JsonSerializable; use ReflectionClass; use ReflectionClassConstant; /** * @phpstan-type ConfigData array<string, mixed> */ abstract class AbstractStationConfiguration implemen...
/content/code_sandbox/backend/src/Entity/AbstractStationConfiguration.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
601
```php <?php declare(strict_types=1); namespace App\Entity; use App\OpenApi; use App\Validator\Constraints\UniqueEntity; use Azura\Normalizer\Attributes\DeepNormalize; use Doctrine\Common\Collections\ArrayCollection; use Doctrine\Common\Collections\Collection; use Doctrine\ORM\Mapping as ORM; use OpenApi\Attributes ...
/content/code_sandbox/backend/src/Entity/StationStreamer.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
1,488
```php <?php declare(strict_types=1); namespace App\Entity; use App\Entity\Attributes\Auditable; use App\Validator\Constraints\UniqueEntity; use Doctrine\ORM\Mapping as ORM; use Exception; use OpenApi\Attributes as OA; use phpseclib3\Crypt\PublicKeyLoader; use Symfony\Component\Validator\Constraints as Assert; use ...
/content/code_sandbox/backend/src/Entity/SftpUser.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
788
```php <?php declare(strict_types=1); namespace App\Entity; use App\Entity\Enums\PlaylistOrders; use App\Entity\Enums\PlaylistRemoteTypes; use App\Entity\Enums\PlaylistSources; use App\Entity\Enums\PlaylistTypes; use App\Utilities\File; use Azura\Normalizer\Attributes\DeepNormalize; use Doctrine\Common\Collections\A...
/content/code_sandbox/backend/src/Entity/StationPlaylist.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
3,177
```php <?php declare(strict_types=1); namespace App\Entity; use App\Radio\Enums\AdapterTypeInterface; use App\Radio\Enums\FrontendAdapters; use App\Radio\Enums\StreamFormats; use App\Radio\Enums\StreamProtocols; use App\Radio\Frontend\AbstractFrontend; use App\Utilities\Urls; use Doctrine\ORM\Mapping as ORM; use Ope...
/content/code_sandbox/backend/src/Entity/StationMount.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
2,794
```php <?php declare(strict_types=1); namespace App\Entity; use App\Utilities\Types; use Doctrine\ORM\Mapping as ORM; use JsonSerializable; #[ORM\Embeddable] class ListenerLocation implements JsonSerializable { #[ORM\Column(length: 255, nullable: false)] protected string $description = 'Unknown'; #[ORM...
/content/code_sandbox/backend/src/Entity/ListenerLocation.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
403
```php <?php declare(strict_types=1); namespace App\Entity; use App\Entity\Interfaces\IdentifiableEntityInterface; use Doctrine\ORM\Mapping as ORM; use JsonSerializable; #[ ORM\Entity, ORM\Table(name: 'station_playlist_media') ] class StationPlaylistMedia implements JsonSerializable, IdentifiableEntityInter...
/content/code_sandbox/backend/src/Entity/StationPlaylistMedia.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
595
```php <?php declare(strict_types=1); namespace App\Entity; use App\Utilities\Types; use App\Utilities\Urls; use Psr\Http\Message\UriInterface; class StationBrandingConfiguration extends AbstractStationConfiguration { public const string DEFAULT_ALBUM_ART_URL = 'default_album_art_url'; public function getD...
/content/code_sandbox/backend/src/Entity/StationBrandingConfiguration.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
421
```php <?php declare(strict_types=1); namespace App\Entity; use Doctrine\ORM\Mapping as ORM; #[ ORM\Entity, ORM\Table(name: 'station_queue'), ORM\Index(name: 'idx_is_played', columns: ['is_played']), ORM\Index(name: 'idx_timestamp_played', columns: ['timestamp_played']), ORM\Index(name: 'idx_sen...
/content/code_sandbox/backend/src/Entity/StationQueue.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
1,554
```php <?php declare(strict_types=1); namespace App\Entity; use App\Entity\Interfaces\IdentifiableEntityInterface; use Doctrine\Common\Collections\ArrayCollection; use Doctrine\Common\Collections\Collection; use Doctrine\ORM\Mapping as ORM; use JsonSerializable; use OpenApi\Attributes as OA; use Stringable; use Symf...
/content/code_sandbox/backend/src/Entity/Role.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
571
```php <?php declare(strict_types=1); namespace App\Entity; use App\Entity\Interfaces\IdentifiableEntityInterface; use App\Entity\Interfaces\PathAwareInterface; use Doctrine\ORM\Mapping as ORM; #[ ORM\Entity, ORM\Table(name: 'unprocessable_media'), ORM\UniqueConstraint(name: 'path_unique_idx', columns: ...
/content/code_sandbox/backend/src/Entity/UnprocessableMedia.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
526
```php <?php declare(strict_types=1); namespace App\Entity; use App\Entity\Interfaces\IdentifiableEntityInterface; use Doctrine\ORM\Mapping as ORM; use Symfony\Component\Validator\Constraints as Assert; #[ ORM\Entity, ORM\Table(name: 'podcast_category'), Attributes\Auditable ] class PodcastCategory impl...
/content/code_sandbox/backend/src/Entity/PodcastCategory.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
1,106
```php <?php declare(strict_types=1); namespace App\Entity; use App\Doctrine\Generator\UuidV6Generator; use App\Entity\Enums\AnalyticsLevel; use App\Entity\Enums\IpSources; use App\Enums\SupportedThemes; use App\OpenApi; use App\Service\Avatar; use App\Utilities\Types; use App\Utilities\Urls; use Doctrine\ORM\Mappin...
/content/code_sandbox/backend/src/Entity/Settings.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
6,744
```php <?php declare(strict_types=1); namespace App\Entity; use App\Entity\Enums\AnalyticsIntervals; use App\Entity\Interfaces\IdentifiableEntityInterface; use Carbon\CarbonImmutable; use DateTimeImmutable; use DateTimeInterface; use DateTimeZone; use Doctrine\ORM\Mapping as ORM; use RuntimeException; #[ ORM\En...
/content/code_sandbox/backend/src/Entity/Analytics.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
731
```php <?php declare(strict_types=1); namespace App\Entity; use App\Entity\Interfaces\EntityGroupsInterface; use App\Entity\Interfaces\IdentifiableEntityInterface; use App\Entity\Traits\TruncateStrings; use App\Security\WebAuthnPasskey; use Doctrine\ORM\Mapping as ORM; use InvalidArgumentException; use Symfony\Compo...
/content/code_sandbox/backend/src/Entity/UserPasskey.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
609
```php <?php declare(strict_types=1); namespace App\Entity; use App\Entity\Interfaces\SongInterface; use App\Utilities\Types; use Doctrine\ORM\Mapping as ORM; #[ ORM\Entity, ORM\Table(name: 'song_history'), ORM\Index(name: 'idx_is_visible', columns: ['is_visible']), ORM\Index(name: 'idx_timestamp_st...
/content/code_sandbox/backend/src/Entity/SongHistory.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
2,330
```php <?php declare(strict_types=1); namespace App\Entity; use App\Entity\Interfaces\IdentifiableEntityInterface; use App\Entity\Interfaces\PathAwareInterface; use App\Entity\Interfaces\ProcessableMediaInterface; use App\Entity\Interfaces\SongInterface; use App\Flysystem\StationFilesystems; use App\Media\Metadata; ...
/content/code_sandbox/backend/src/Entity/StationMedia.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
2,480
```php <?php declare(strict_types=1); namespace App\Entity; use App\Radio\Enums\StreamFormats; use App\Utilities\Strings; use Doctrine\ORM\Mapping as ORM; use OpenApi\Attributes as OA; use Stringable; use Symfony\Component\Validator\Constraints as Assert; #[ OA\Schema(type: "object"), ORM\Entity, ORM\Ta...
/content/code_sandbox/backend/src/Entity/StationHlsStream.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
680
```php <?php declare(strict_types=1); namespace App\Entity; use App\Utilities\Types; class PodcastBrandingConfiguration extends AbstractStationConfiguration { public const string PUBLIC_CUSTOM_HTML = 'public_custom_html'; public function getPublicCustomHtml(): ?string { return Types::stringOrNu...
/content/code_sandbox/backend/src/Entity/PodcastBrandingConfiguration.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
111
```php <?php declare(strict_types=1); namespace App\Entity; use App\Entity\Enums\PodcastSources; use App\Entity\Interfaces\IdentifiableEntityInterface; use Doctrine\ORM\Mapping as ORM; use Symfony\Component\Validator\Constraints as Assert; #[ ORM\Entity, ORM\Table(name: 'podcast_episode'), Attributes\Au...
/content/code_sandbox/backend/src/Entity/PodcastEpisode.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
1,193
```php <?php declare(strict_types=1); namespace App\Entity; use App\Entity\Interfaces\IdentifiableEntityInterface; use App\OpenApi; use Doctrine\Common\Collections\ArrayCollection; use Doctrine\Common\Collections\Collection; use Doctrine\ORM\Mapping as ORM; use OpenApi\Attributes as OA; #[ OA\Schema(type: "obje...
/content/code_sandbox/backend/src/Entity/Relay.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
649
```php <?php declare(strict_types=1); namespace App\Entity; use App\Entity\Enums\AuditLogOperations; use App\Entity\Interfaces\IdentifiableEntityInterface; use Doctrine\ORM\Mapping as ORM; #[ ORM\Entity(readOnly: true), ORM\Table(name: 'audit_log'), ORM\Index(name: 'idx_search', columns: ['class', 'user...
/content/code_sandbox/backend/src/Entity/AuditLog.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
726
```php <?php declare(strict_types=1); namespace App\Entity; use App\Auth; use App\Entity\Interfaces\EntityGroupsInterface; use App\Entity\Interfaces\IdentifiableEntityInterface; use App\OpenApi; use App\Utilities\Strings; use App\Validator\Constraints\UniqueEntity; use Azura\Normalizer\Attributes\DeepNormalize; use ...
/content/code_sandbox/backend/src/Entity/User.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
1,802
```php <?php declare(strict_types=1); namespace App\Entity; use App\Entity\Interfaces\IdentifiableEntityInterface; use App\Utilities\File; use Doctrine\Common\Collections\ArrayCollection; use Doctrine\Common\Collections\Collection; use Doctrine\ORM\Mapping as ORM; use OpenApi\Attributes as OA; use Stringable; use Sy...
/content/code_sandbox/backend/src/Entity/CustomField.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
656
```php <?php declare(strict_types=1); namespace App\Entity; use App\Media\Metadata; use App\Utilities\Time; use App\Utilities\Types; use ReflectionObject; class StationMediaMetadata extends AbstractStationConfiguration { public const string AMPLIFY = 'liq_amplify'; public function getLiqAmplify(): ?float ...
/content/code_sandbox/backend/src/Entity/StationMediaMetadata.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
1,253
```php <?php declare(strict_types=1); namespace App\Entity; use App\Entity\Enums\PodcastSources; use Azura\Normalizer\Attributes\DeepNormalize; use Doctrine\Common\Collections\ArrayCollection; use Doctrine\Common\Collections\Collection; use Doctrine\ORM\Mapping as ORM; use Symfony\Component\Validator\Constraints as ...
/content/code_sandbox/backend/src/Entity/Podcast.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
1,421
```php <?php declare(strict_types=1); namespace App\Entity; use App\Radio\Enums\AdapterTypeInterface; use App\Radio\Enums\RemoteAdapters; use App\Radio\Enums\StreamFormats; use App\Radio\Enums\StreamProtocols; use App\Radio\Remote\AbstractRemote; use App\Utilities; use Doctrine\ORM\Mapping as ORM; use Psr\Http\Messa...
/content/code_sandbox/backend/src/Entity/StationRemote.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
2,719
```php <?php declare(strict_types=1); namespace App\Entity; use App\Security\SplitToken; use Doctrine\ORM\Mapping as ORM; #[ ORM\Entity(readOnly: true), ORM\Table(name: 'user_login_tokens') ] class UserLoginToken { use Traits\HasSplitTokenFields; #[ORM\ManyToOne(fetch: 'EAGER', inversedBy: 'login_t...
/content/code_sandbox/backend/src/Entity/UserLoginToken.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
190
```php <?php declare(strict_types=1); namespace App\Entity; use Carbon\CarbonImmutable; use Carbon\CarbonInterface; use DateTimeZone; use Doctrine\ORM\Mapping as ORM; #[ ORM\Entity, ORM\Table(name: 'station_requests') ] class StationRequest implements Interfaces\IdentifiableEntityInterface, Interfac...
/content/code_sandbox/backend/src/Entity/StationRequest.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
647
```php <?php declare(strict_types=1); namespace App\Entity; use App\Entity\Interfaces\SongInterface; use InvalidArgumentException; use NowPlaying\Result\CurrentSong; class Song implements SongInterface { use Traits\HasSongFields; public final const string OFFLINE_SONG_ID = '5a6a865199cf5df73b1417326d2ff24f...
/content/code_sandbox/backend/src/Entity/Song.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
774
```php <?php declare(strict_types=1); namespace App\Entity; use App\Entity\Interfaces\IdentifiableEntityInterface; use Doctrine\ORM\Mapping as ORM; #[ ORM\Entity, ORM\Table(name: 'station_media_custom_field') ] class StationMediaCustomField implements IdentifiableEntityInterface { use Traits\HasAutoIncr...
/content/code_sandbox/backend/src/Entity/StationMediaCustomField.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
375
```php <?php declare(strict_types=1); namespace App\Entity; use Doctrine\ORM\Mapping as ORM; #[ ORM\Entity, ORM\Table(name: 'station_playlist_folders') ] class StationPlaylistFolder implements Interfaces\PathAwareInterface, Interfaces\StationCloneAwareInterface, Interfaces\IdentifiableEntityInte...
/content/code_sandbox/backend/src/Entity/StationPlaylistFolder.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
402
```php <?php declare(strict_types=1); namespace App\Entity\Attributes; use Attribute; /** * Mark a database migration as the last migration before a stable version was tagged. */ #[Attribute(Attribute::TARGET_CLASS | ATTRIBUTE::IS_REPEATABLE)] final class StableMigration { public function __construct( ...
/content/code_sandbox/backend/src/Entity/Attributes/StableMigration.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
74
```php <?php declare(strict_types=1); namespace App\Entity\Attributes; use Attribute; /** * Mark an individual property as one where changes should be ignored. */ #[Attribute(Attribute::TARGET_PROPERTY)] final class AuditIgnore { } ```
/content/code_sandbox/backend/src/Entity/Attributes/AuditIgnore.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
48
```php <?php declare(strict_types=1); namespace App\Entity\Attributes; use Attribute; /** * Marks a class as one whose changes should be logged via the Audit Log. */ #[Attribute(Attribute::TARGET_CLASS)] final class Auditable { } ```
/content/code_sandbox/backend/src/Entity/Attributes/Auditable.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
51
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; /** * Auto-generated Migration: Please modify to your needs! */ final class Version20170510082607 extends AbstractMigration { /** * @param Schema $schema */ public function up(Schema $schema): ...
/content/code_sandbox/backend/src/Entity/Migration/Version20170510082607.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
299
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; /** * Add relay URL to mountpoint table, update Shoutcast 2 stations to have one default mount point. */ final class Version20170412210654 extends AbstractMigration { /** * @param Schema $schema */...
/content/code_sandbox/backend/src/Entity/Migration/Version20170412210654.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
316
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use App\Entity\Attributes\StableMigration; use Doctrine\DBAL\Schema\Schema; #[ StableMigration('0.18.1'), StableMigration('0.18.0') ] final class Version20230410210554 extends AbstractMigration { public function getDescription(): stri...
/content/code_sandbox/backend/src/Entity/Migration/Version20230410210554.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
195
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; final class Version20210105061553 extends AbstractMigration { public function getDescription(): string { return 'Add a separate setting for showing/hiding the "Download" button in On-Demand streami...
/content/code_sandbox/backend/src/Entity/Migration/Version20210105061553.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
139
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; /** * Move all playlists that were previously "random" into the new "shuffled" type. */ final class Version20180830003036 extends AbstractMigration { public function up(Schema $schema): void { //...
/content/code_sandbox/backend/src/Entity/Migration/Version20180830003036.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
252
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; final class Version20220530010809 extends AbstractMigration { public function getDescription(): string { return 'Add artwork file to StationStreamer'; } public function up(Schema $schema):...
/content/code_sandbox/backend/src/Entity/Migration/Version20220530010809.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
124
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; /** * Auto-generated Migration: Please modify to your needs! */ final class Version20201204043539 extends AbstractMigration { public function getDescription(): string { return 'Settings migration...
/content/code_sandbox/backend/src/Entity/Migration/Version20201204043539.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
1,100
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; /** * Auto-generated Migration: Please modify to your needs! */ final class Version20190429025906 extends AbstractMigration { public function up(Schema $schema): void { $this->addSql('ALTER TABLE...
/content/code_sandbox/backend/src/Entity/Migration/Version20190429025906.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
280
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; /** * Make media length an INT instead of SMALLINT for songs longer than 9 hours (!) */ final class Version20180716185805 extends AbstractMigration { public function up(Schema $schema): void { $t...
/content/code_sandbox/backend/src/Entity/Migration/Version20180716185805.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
124
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; /** * Auto-generated Migration: Please modify to your needs! */ final class Version20200417082209 extends AbstractMigration { public function getDescription(): string { return 'Expand indices for...
/content/code_sandbox/backend/src/Entity/Migration/Version20200417082209.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
382
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; /** * Auto-generated Migration: Please modify to your needs! */ final class Version20170502202418 extends AbstractMigration { /** * @param Schema $schema */ public function up(Schema $schema): ...
/content/code_sandbox/backend/src/Entity/Migration/Version20170502202418.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
445
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; /** * Auto-generated Migration: Please modify to your needs! */ final class Version20161122035237 extends AbstractMigration { /** * @param Schema $schema */ public function up(Schema $schema): ...
/content/code_sandbox/backend/src/Entity/Migration/Version20161122035237.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
176
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; /** * Auto-generated Migration: Please modify to your needs! */ final class Version20190429040410 extends AbstractMigration { public function up(Schema $schema): void { $this->addSql('ALTER TABLE...
/content/code_sandbox/backend/src/Entity/Migration/Version20190429040410.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
159
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; final class Version20201027130404 extends AbstractMigration { public function getDescription(): string { return 'Song storage consolidation, part 1.'; } public function up(Schema $schema):...
/content/code_sandbox/backend/src/Entity/Migration/Version20201027130404.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
837
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; /** * Auto-generated Migration: Please modify to your needs! */ final class Version20170622223025 extends AbstractMigration { /** * @param Schema $schema */ public function up(Schema $schema): ...
/content/code_sandbox/backend/src/Entity/Migration/Version20170622223025.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
174
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; /** * Auto-generated Migration: Please modify to your needs! */ final class Version20190402224811 extends AbstractMigration { public function up(Schema $schema): void { $this->addSql('ALTER TABLE...
/content/code_sandbox/backend/src/Entity/Migration/Version20190402224811.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
121
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; final class Version20220415093355 extends AbstractMigration { public function getDescription(): string { return 'Add device and location metadata to Listeners table.'; } public function up...
/content/code_sandbox/backend/src/Entity/Migration/Version20220415093355.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
411
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; /** * Auto-generated Migration: Please modify to your needs! */ final class Version20170606173152 extends AbstractMigration { /** * @param Schema $schema */ public function up(Schema $schema): ...
/content/code_sandbox/backend/src/Entity/Migration/Version20170606173152.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
154
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; /** * Add request threshold to Station entity. */ final class Version20170414205418 extends AbstractMigration { /** * @param Schema $schema */ public function up(Schema $schema): void { ...
/content/code_sandbox/backend/src/Entity/Migration/Version20170414205418.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
180
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; final class Version20220102033308 extends AbstractMigration { public function getDescription(): string { return 'New Settings columns for new sync process.'; } public function up(Schema $s...
/content/code_sandbox/backend/src/Entity/Migration/Version20220102033308.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
234
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; final class Version20201215175111 extends AbstractMigration { public function getDescription(): string { return 'Expand the possible length of various cue and fade values in StationMedia.'; } ...
/content/code_sandbox/backend/src/Entity/Migration/Version20201215175111.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
312
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; final class Version20211230194621 extends AbstractMigration { public function getDescription(): string { return 'Add "is_visible" field to queue items to optimize queries.'; } public funct...
/content/code_sandbox/backend/src/Entity/Migration/Version20211230194621.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
165
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use App\Entity\Attributes\StableMigration; use Doctrine\DBAL\Schema\Schema; #[ StableMigration('0.20.0') ] final class Version20240511123636 extends AbstractMigration { public function getDescription(): string { return 'Remove...
/content/code_sandbox/backend/src/Entity/Migration/Version20240511123636.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
196
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; /** * Auto-generated Migration: Please modify to your needs! */ final class Version20170510091820 extends AbstractMigration { /** * @param Schema $schema */ public function up(Schema $schema): ...
/content/code_sandbox/backend/src/Entity/Migration/Version20170510091820.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
273
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; /** * Auto-generated Migration: Please modify to your needs! */ final class Version20170524090814 extends AbstractMigration { /** * @param Schema $schema */ public function up(Schema $schema): ...
/content/code_sandbox/backend/src/Entity/Migration/Version20170524090814.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
139
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use App\Entity\Migration\Traits\UpdateAllRecords; use Doctrine\DBAL\Schema\Schema; final class Version20180412055024 extends AbstractMigration { use UpdateAllRecords; public function up(Schema $schema): void { $this->addSql('...
/content/code_sandbox/backend/src/Entity/Migration/Version20180412055024.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
199
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; /** * Auto-generated Migration: Please modify to your needs! */ final class Version20190331215627 extends AbstractMigration { public function up(Schema $schema): void { $this->addSql('ALTER TABLE...
/content/code_sandbox/backend/src/Entity/Migration/Version20190331215627.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
115
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; /** * Auto-generated Migration: Please modify to your needs! */ final class Version20190818003805 extends AbstractMigration { public function up(Schema $schema): void { $this->addSql('ALTER TABLE...
/content/code_sandbox/backend/src/Entity/Migration/Version20190818003805.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
123
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; /** * Manually re-shuffle any "shuffled" playlists via their weights in the DB. */ final class Version20181016144143 extends AbstractMigration { public function up(Schema $schema): void { // this...
/content/code_sandbox/backend/src/Entity/Migration/Version20181016144143.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
341
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\ParameterType; use Doctrine\DBAL\Schema\Schema; /** * Auto-generated Migration: Please modify to your needs! */ final class Version20201109203951 extends AbstractMigration { public function getDescription(): string { ...
/content/code_sandbox/backend/src/Entity/Migration/Version20201109203951.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
337
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; /** * Auto-generated Migration: Please modify to your needs! */ final class Version20181120100629 extends AbstractMigration { public function up(Schema $schema): void { $this->addSql('ALTER TABLE...
/content/code_sandbox/backend/src/Entity/Migration/Version20181120100629.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
117
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; /** * Auto-generated Migration: Please modify to your needs! */ final class Version20201125220258 extends AbstractMigration { public function getDescription(): string { return 'Expand the length ...
/content/code_sandbox/backend/src/Entity/Migration/Version20201125220258.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
352
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use App\Entity\Station; use Doctrine\DBAL\Schema\Schema; /** * Auto-generated Migration: Please modify to your needs! */ final class Version20171208093239 extends AbstractMigration { public function up(Schema $schema): void { $t...
/content/code_sandbox/backend/src/Entity/Migration/Version20171208093239.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
205
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\ArrayParameterType; use Doctrine\DBAL\ParameterType; use Doctrine\DBAL\Schema\Schema; /** * Auto-generated Migration: Please modify to your needs! */ final class Version20191024185005 extends AbstractMigration { public fun...
/content/code_sandbox/backend/src/Entity/Migration/Version20191024185005.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
424
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; /** * Auto-generated Migration: Please modify to your needs! */ final class Version20210419043231 extends AbstractMigration { public function getDescription(): string { return 'Settings entity mi...
/content/code_sandbox/backend/src/Entity/Migration/Version20210419043231.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
1,251
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; final class Version20221008015609 extends AbstractMigration { public function getDescription(): string { return 'Support App Key and App Secret for Dropbox Storage Locations'; } public fun...
/content/code_sandbox/backend/src/Entity/Migration/Version20221008015609.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
149
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; final class Version20240319115513 extends AbstractMigration { public function getDescription(): string { return 'Make Podcast Episode publish date always have a value.'; } public function ...
/content/code_sandbox/backend/src/Entity/Migration/Version20240319115513.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
167
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\ParameterType; use Doctrine\DBAL\Schema\Schema; use RuntimeException; /** * Auto-generated Migration: Please modify to your needs! */ final class Version20181202180617 extends AbstractMigration { public function preup(Sche...
/content/code_sandbox/backend/src/Entity/Migration/Version20181202180617.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
469
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; /** * Auto-generated Migration: Please modify to your needs! */ final class Version20161117161959 extends AbstractMigration { /** * @param Schema $schema */ public function up(Schema $schema): ...
/content/code_sandbox/backend/src/Entity/Migration/Version20161117161959.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
139
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; /** * Auto-generated Migration: Please modify to your needs! */ final class Version20180425050351 extends AbstractMigration { /** * @param Schema $schema */ public function up(Schema $schema): ...
/content/code_sandbox/backend/src/Entity/Migration/Version20180425050351.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
373
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; /** * Auto-generated Migration: Please modify to your needs! */ final class Version20180320052444 extends AbstractMigration { public function preup(Schema $schema): void { // Avoid FK errors with...
/content/code_sandbox/backend/src/Entity/Migration/Version20180320052444.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
202
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use App\Entity\Attributes\StableMigration; use Doctrine\DBAL\Schema\Schema; #[StableMigration('0.17.1')] final class Version20220611123923 extends AbstractMigration { public function getDescription(): string { return 'Add current_...
/content/code_sandbox/backend/src/Entity/Migration/Version20220611123923.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
265
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; /** * Update the index on song_history. */ final class Version20180826011103 extends AbstractMigration { public function up(Schema $schema): void { $this->addSql('DROP INDEX sort_idx ON song_hist...
/content/code_sandbox/backend/src/Entity/Migration/Version20180826011103.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
148
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; /** * Auto-generated Migration: Please modify to your needs! */ final class Version20200124183957 extends AbstractMigration { public function getDescription(): string { return 'Add "amplify" meta...
/content/code_sandbox/backend/src/Entity/Migration/Version20200124183957.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
147
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; /** * Auto-generated Migration: Please modify to your needs! */ final class Version20170823204230 extends AbstractMigration { /** * @param Schema $schema */ public function up(Schema $schema): ...
/content/code_sandbox/backend/src/Entity/Migration/Version20170823204230.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
157
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use App\Entity\Attributes\StableMigration; use Doctrine\DBAL\Schema\Schema; #[StableMigration('0.17.5')] final class Version20221102125558 extends AbstractMigration { public function getDescription(): string { return 'Add user-lev...
/content/code_sandbox/backend/src/Entity/Migration/Version20221102125558.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
152
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; final class Version20220626024436 extends AbstractMigration { public function getDescription(): string { return 'Add listeners to HLS streams.'; } public function up(Schema $schema): void ...
/content/code_sandbox/backend/src/Entity/Migration/Version20220626024436.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
121
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; final class Version20210528180443 extends AbstractMigration { public function getDescription(): string { return 'Correct many tables having incorrectly nullable relation tables.'; } public...
/content/code_sandbox/backend/src/Entity/Migration/Version20210528180443.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
675
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; /** * Auto-generated Migration: Please modify to your needs! */ final class Version20210419033245 extends AbstractMigration { public function getDescription(): string { return 'Settings entity mi...
/content/code_sandbox/backend/src/Entity/Migration/Version20210419033245.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
742
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; /** * Auto-generated Migration: Please modify to your needs! */ final class Version20181126073334 extends AbstractMigration { public function up(Schema $schema): void { $this->addSql('ALTER TABLE...
/content/code_sandbox/backend/src/Entity/Migration/Version20181126073334.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
111
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\Migrations\AbstractMigration as DoctrineAbstractMigration; abstract class AbstractMigration extends DoctrineAbstractMigration { public function isTransactional(): bool { return false; } } ```
/content/code_sandbox/backend/src/Entity/Migration/AbstractMigration.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
52
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use App\Entity\Attributes\StableMigration; use Doctrine\DBAL\Schema\Schema; #[ StableMigration('0.19.6'), StableMigration('0.19.7') ] final class Version20240425151151 extends AbstractMigration { public function getDescription(): stri...
/content/code_sandbox/backend/src/Entity/Migration/Version20240425151151.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
183
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; /** * Auto-generated Migration: Please modify to your needs! */ final class Version20171103075821 extends AbstractMigration { /** * @param Schema $schema */ public function up(Schema $schema): ...
/content/code_sandbox/backend/src/Entity/Migration/Version20171103075821.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
147
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; /** * Auto-generated Migration: Please modify to your needs! */ final class Version20200711002451 extends AbstractMigration { public function getDescription(): string { return 'Add Messenger mess...
/content/code_sandbox/backend/src/Entity/Migration/Version20200711002451.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
282
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; final class Version20201231011833 extends AbstractMigration { public function getDescription(): string { return 'Make paths across the system consistent.'; } public function up(Schema $sch...
/content/code_sandbox/backend/src/Entity/Migration/Version20201231011833.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
277
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; final class Version20240221151753 extends AbstractMigration { public function getDescription(): string { return 'Add ability for podcasts to sync from playlists.'; } public function up(Sch...
/content/code_sandbox/backend/src/Entity/Migration/Version20240221151753.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
439
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\ParameterType; use Doctrine\DBAL\Schema\Schema; /** * Auto-generated Migration: Please modify to your needs! */ final class Version20191101065730 extends AbstractMigration { public function up(Schema $schema): void { ...
/content/code_sandbox/backend/src/Entity/Migration/Version20191101065730.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
419
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; /** * Auto-generated Migration: Please modify to your needs! */ final class Version20170618013019 extends AbstractMigration { /** * @param Schema $schema */ public function up(Schema $schema): ...
/content/code_sandbox/backend/src/Entity/Migration/Version20170618013019.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
262
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; final class Version20201211164613 extends AbstractMigration { public function getDescription(): string { return 'Improve indexing on audit log records and clean up spurious settings records.'; ...
/content/code_sandbox/backend/src/Entity/Migration/Version20201211164613.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
182
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use App\Entity\Attributes\StableMigration; use Doctrine\DBAL\Schema\Schema; #[StableMigration('0.17.0')] final class Version20220605052847 extends AbstractMigration { public function getDescription(): string { return 'Add selectab...
/content/code_sandbox/backend/src/Entity/Migration/Version20220605052847.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
141
```php <?php declare(strict_types=1); namespace App\Entity\Migration; use Doctrine\DBAL\Schema\Schema; /** * Auto-generated Migration: Please modify to your needs! */ final class Version20180428062526 extends AbstractMigration { public function up(Schema $schema): void { $this->addSql('CREATE TABL...
/content/code_sandbox/backend/src/Entity/Migration/Version20180428062526.php
php
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
543