A corporation manager and dashboard for EVE Online
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

21 lines
482 B

  1. -- Schema for Calefaction's Campaign module's internal database
  2. DROP TABLE IF EXISTS last_updated;
  3. CREATE TABLE last_updated (
  4. lu_campaign TEXT,
  5. lu_operation TEXT,
  6. lu_date TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
  7. UNIQUE (lu_campaign, lu_operation)
  8. );
  9. DROP TABLE IF EXISTS overview;
  10. CREATE TABLE overview (
  11. ov_campaign TEXT,
  12. ov_operation TEXT,
  13. ov_primary INTEGER DEFAULT 0,
  14. ov_secondary INTEGER DEFAULT NULL,
  15. UNIQUE (ov_campaign, ov_operation)
  16. );