CREATE TABLE `germania_fabrics` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Datenbank-ID',
  `enabled` int(2) unsigned DEFAULT '1' COMMENT 'Globaler An/Aus-Schalter',
  `lieferbar` int(2) DEFAULT '1' COMMENT 'Lieferbarkeit',
  `collection_id` int(11) unsigned DEFAULT NULL COMMENT 'ID der Collection (deprecated)',
  `collection_slug` varchar(64) DEFAULT NULL COMMENT 'URL-friendly collection name',
  `collection_name` varchar(64) DEFAULT NULL COMMENT 'Name der Kollektion',
  `collection_page` varchar(16) DEFAULT NULL COMMENT 'Seite oder Karte in Kollektion',
  `keywords` varchar(256) DEFAULT NULL COMMENT 'Additional helpful information, product hints and such',
  `price_group` int(2) unsigned DEFAULT NULL COMMENT 'Preisgruppe',
  `fabric_number` varchar(10) DEFAULT NULL COMMENT 'Stoffnummer',
  `fabric_transparency` varchar(16) DEFAULT NULL COMMENT 'Stofftransparenz',
  `fabric_lieferschein_name` varchar(256) DEFAULT NULL COMMENT 'Name des Stoffes auf Lieferschein',
  `fabric_name` varchar(256) DEFAULT NULL COMMENT 'Name des Stoffes (Hersteller)',
  `pattern` varchar(256) DEFAULT NULL COMMENT 'Name des Dekors',
  `roll_max_width` decimal(5,2) unsigned DEFAULT NULL COMMENT 'Rollenbreite',
  `fabric_max_width` int(11) unsigned DEFAULT NULL COMMENT 'Maximale Stoffbreite (Anlage)',
  `repeat_width` int(11) unsigned DEFAULT NULL COMMENT 'Rapport-Breite (Millimeter)',
  `repeat_height` int(11) unsigned DEFAULT NULL COMMENT 'Rapport-Höhe (Millimeter)',
  `repeat_type` varchar(64) DEFAULT NULL COMMENT 'Rapport-Art (allover, single, border)',
  `photo` varchar(64) DEFAULT NULL COMMENT 'Dateiname Stoffbild',
  `in_kompaktkollektion` int(2) DEFAULT '-1' COMMENT 'In Kompaktkollektion',
  `pleat_width` int(11) unsigned DEFAULT NULL COMMENT 'Faltenbreite des verwendeten Fotos',
  `thickness` decimal(5,2) unsigned DEFAULT NULL COMMENT 'Stoffdicke',
  `material` varchar(128) DEFAULT NULL COMMENT 'Materialzusammensetzung',
  `weight` int(10) unsigned DEFAULT NULL COMMENT 'Stoffgewicht',
  `easy_clean` int(2) DEFAULT NULL COMMENT 'pflegeleicht',
  `washable` int(2) DEFAULT NULL COMMENT 'waschbar',
  `moist_room` int(2) DEFAULT NULL COMMENT 'feuchtraumgeeignet',
  `light_resistance` varchar(16) DEFAULT NULL COMMENT 'Lichtechtheit',
  `flame_resistance` int(2) DEFAULT NULL COMMENT 'Flammenhemmend',
  `screen_suitable` int(2) DEFAULT NULL COMMENT 'bildschirmarbeitsplatzgeeignet',
  `paneltrack` int(2) unsigned DEFAULT NULL COMMENT 'Auch als Flächenvorhang',
  `oekotex` int(2) DEFAULT NULL COMMENT 'Ökotex-zertifiziert',
  `halogen_free` int(2) DEFAULT NULL COMMENT 'halogenfrei',
  `seatex` int(2) DEFAULT NULL COMMENT 'SeaTex',
  `pvc_free` int(2) DEFAULT NULL COMMENT 'PVC-frei',
  `green_guard` int(2) DEFAULT NULL COMMENT 'GreenGuard',
  `cradle_to_cradle` varchar(8) DEFAULT NULL COMMENT 'Cradle-to-cradle',
  `topar` int(2) unsigned DEFAULT NULL COMMENT 'Topar®',
  `dustblock` int(2) unsigned DEFAULT NULL COMMENT 'Dustblock®',
  `light_reflection` int(2) unsigned DEFAULT NULL COMMENT 'L-Reflektion',
  `light_transmission` int(2) unsigned DEFAULT NULL COMMENT 'L-Transmission',
  `light_absorption` int(2) unsigned DEFAULT NULL COMMENT 'L-Absorption',
  `solar_reflection` int(2) unsigned DEFAULT NULL COMMENT 'S-Reflektion',
  `solar_transmission` int(2) unsigned DEFAULT NULL COMMENT 'S-Transmission',
  `solar_absorption` int(2) unsigned zerofill DEFAULT NULL COMMENT 'S-Absorption',
  `uv_class` decimal(5,2) DEFAULT NULL COMMENT 'UV-Klassifizierung',
  `energy_class_summer` varchar(16) DEFAULT NULL COMMENT 'Energieklasse Sommer',
  `energy_class_winter` varchar(16) DEFAULT NULL COMMENT 'Energieklasse Winter',
  `sound_class` int(2) DEFAULT NULL COMMENT 'Sound-Klassifizierung',
  `slat_available_widths` varchar(64) DEFAULT NULL COMMENT 'Verfügbare Lamellenbreiten',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1968 DEFAULT CHARSET=utf8 COMMENT='Stoffe aus den verschiedenen Sonnenschutz-Kollektionen von Germania KG/Luxaflex.\n\nDas Feld „lieferbar“ codiert die Lieferbarkeit: \n• 1: lieferbar\n• 0: nicht lieferbar\n\nDas Feld „enabled“ ist ein globaler An-Aus-Schalter.';NE=InnoDB AUTO_INCREMENT=1968 DEFAULT CHARSET=utf8 COMMENT='Stoffe aus den verschiedenen Sonnenschutz-Kollektionen von Germania KG/Luxaflex.\n\nDas Feld „lieferbar“ codiert die Lieferbarkeit: \n• 1: lieferbar\n• 0: nicht lieferbar\n\nDas Feld „enabled“ ist ein globaler An-Aus-Schalter.';
