<?php declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
/**
* Auto-generated Migration: Please modify to your needs!
*/
final class Version20190528114928 extends AbstractMigration
{
public function up(Schema $schema) : void
{
// this up() migration is auto-generated, please modify it to your needs
// VS Abo Struktur
$this->addSql("
INSERT INTO `vsabo` (`id`, `aboname`) VALUES
(1, 'Kostenlos'),
(2, 'Standard ohne Inserat'),
(3, 'Standard mit Inserat'),
(4, 'Premium ohne Inserat'),
(5, 'Premium mit Inserat')
");
// VS Beginn Auswahl Struktur
$this->addSql("
INSERT INTO `vsbeginnauswahl` (`id`, `beginn_auswahl`) VALUES
(1, ''),
(2, 'Ca.'),
(3, 'Ab')
");
// VS Region Struktur
$this->addSql("
INSERT INTO `vsregion` (`id`, `regionname`) VALUES
(1, 'Airolo'),
(2, 'Altdorf'),
(3, 'Amsteg'),
(4, 'Andermatt'),
(5, 'Attinghausen'),
(6, 'Bauen'),
(7, 'Beckenried'),
(8, 'Bennau'),
(9, 'Brig'),
(10, 'Bristen'),
(11, 'Brunnen'),
(12, 'Buochs'),
(13, 'Bürglen'),
(14, 'Dallenwil'),
(15, 'Disentis'),
(16, 'Einsiedeln'),
(17, 'Emmetten'),
(18, 'Engelberg'),
(19, 'Ennetbürgen'),
(20, 'Erstfeld'),
(21, 'Flüelen'),
(22, 'Flüeli-Ranft'),
(23, 'Goldau'),
(24, 'Göschenen'),
(25, 'Gurtnellen'),
(26, 'Haldi'),
(27, 'Hergiswil'),
(28, 'Hospental'),
(29, 'Ibach'),
(30, 'Intschi'),
(31, 'Isenthal'),
(32, 'Isleten'),
(33, 'Kägiswil'),
(34, 'Küssnacht'),
(35, 'Lungern'),
(36, 'Luzern'),
(37, 'Meggen'),
(38, 'Meien'),
(39, 'Morschach'),
(40, 'Muotathal'),
(41, 'Oberdorf'),
(42, 'Oberiberg'),
(43, 'Oberrickenbach'),
(44, 'Oberwil'),
(45, 'Realp'),
(46, 'Rickenbach'),
(47, 'Ried-Muotathal'),
(48, 'Riemenstalden'),
(49, 'Rothenthurm'),
(50, 'Sarnen'),
(51, 'Sattel'),
(52, 'Schattdorf'),
(53, 'Schwyz'),
(54, 'Seedorf'),
(55, 'Seelisberg'),
(56, 'Seewen'),
(57, 'Silenen'),
(58, 'Sisikon'),
(59, 'Spiringen'),
(60, 'Stans'),
(61, 'Stansstad'),
(62, 'Steinen'),
(63, 'Steinerberg'),
(64, 'Unterengstringen'),
(65, 'Unterschächen'),
(66, 'Urnerboden'),
(67, 'Wassen'),
(68, 'Willisau'),
(69, 'Wolfenschiessen')
");
// VS Rubrik Struktur
$this->addSql("
INSERT INTO `vsrubrik` (`id`, `rubrikname`, `beschreibung`) VALUES
(1, 'Ausstellungen', 'Etwas über Sport'),
(2, 'Brauchtum', 'Etwas zum basteln'),
(3, 'Diverses', 'Etwas zum basteln'),
(4, 'Fest', 'Etwas zum basteln'),
(5, 'Forum', 'Etwas zum basteln'),
(6, 'Kino/Film', 'Etwas zum basteln'),
(7, 'Kulinarisches', 'Etwas zum basteln'),
(8, 'Kunst', 'Etwas zum basteln'),
(9, 'Kurse', 'Etwas zum basteln'),
(10, 'Literatur', 'Etwas zum basteln'),
(11, 'Musik', 'Etwas zum basteln'),
(12, 'Party', 'Etwas zum basteln'),
(13, 'Spiele', 'Etwas zum basteln'),
(14, 'Sport', 'Etwas zum basteln'),
(16, 'Tanz', 'Etwas zum basteln'),
(17, 'Theater', 'Etwas zum basteln')
");
// VS Status Struktur
$this->addSql("
INSERT INTO `vsstatus` (`id`, `statusname`) VALUES
(1, 'Erfasst'),
(2, 'Korrektur'),
(3, 'Anzeigen'),
(4, 'Storniert'),
(5, 'Nicht zugewiesen')
");
// VS Typ Struktur
$this->addSql("
INSERT INTO `vstyp` (`id`, `typname`) VALUES
(1, 'Einzelveranstaltung'),
(2, 'Dauerveranstaltung'),
(3, 'ohne Fixdatum'),
(4, 'nicht zugewiesen')
");
}
public function down(Schema $schema) : void
{
// this down() migration is auto-generated, please modify it to your needs
}
}