ext_tables.sql 549 B

1234567891011121314
  1. CREATE TABLE tx_begriffmgt_domain_model_term (
  2. uid int(11) unsigned NOT NULL AUTO_INCREMENT,
  3. pid int(11) DEFAULT '0' NOT NULL,
  4. tstamp int(11) unsigned DEFAULT '0' NOT NULL,
  5. crdate int(11) unsigned DEFAULT '0' NOT NULL,
  6. cruser_id int(11) DEFAULT '0' NOT NULL,
  7. deleted tinyint(1) unsigned DEFAULT '0' NOT NULL,
  8. hidden tinyint(1) unsigned DEFAULT '0' NOT NULL,
  9. type VARCHAR(255) DEFAULT '' NOT NULL,
  10. category VARCHAR(255) DEFAULT '',
  11. terms text NOT NULL DEFAULT '',
  12. url varchar(255) DEFAULT '',
  13. PRIMARY KEY (uid)
  14. );