Skip to content
Snippets Groups Projects
Select Git revision
  • 48db560f0982637de0b9a1d23202d8a34cbb4b09
  • master default protected
  • vertical_relations
  • lu_without_semantic_frames
  • hierarchy
  • additional-unification-filters
  • v0.1.1
  • v0.1.0
  • v0.0.9
  • v0.0.8
  • v0.0.7
  • v0.0.6
  • v0.0.5
  • v0.0.4
  • v0.0.3
  • v0.0.2
  • v0.0.1
17 results

UnificationEntriesForFramesList.vue

Blame
  • patch_old_wndb.sql 939 B
    -- Used to add the emotion table required for schema 2, though it will remain
    -- empty.
    CREATE TABLE IF NOT EXISTS `emotion` (
      `id` bigint(20) NOT NULL AUTO_INCREMENT,
      `lexicalunit_id` bigint(20) NOT NULL,
      `emotions` varchar(255) COLLATE utf8_polish_ci DEFAULT NULL,
      `valuations` varchar(255) COLLATE utf8_polish_ci DEFAULT NULL,
      `markedness` varchar(5) CHARACTER SET utf8 DEFAULT NULL,
      `unitStatus` int(1) DEFAULT '0',
      `example1` varchar(255) COLLATE utf8_polish_ci DEFAULT NULL,
      `example2` varchar(255) COLLATE utf8_polish_ci DEFAULT NULL,
      `owner` varchar(255) COLLATE utf8_polish_ci NOT NULL,
      `creation_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
        ON UPDATE CURRENT_TIMESTAMP,
      `super_anotation` int(1) DEFAULT '0',
    
      PRIMARY KEY (`id`),
      KEY `idx` (`lexicalunit_id`)
    ) ENGINE=MyISAM AUTO_INCREMENT=4300 CHARSET=utf8 COLLATE=utf8_polish_ci;
    
    ALTER TABLE lexicalunit ADD verb_aspect int(11) DEFAULT '0';