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.
 
 
 
 
 

22 lines
530 B

  1. -- Schema for Calefaction's internal database
  2. DROP TABLE IF EXISTS session;
  3. CREATE TABLE session (
  4. session_id INTEGER PRIMARY KEY AUTOINCREMENT,
  5. session_character INTEGER DEFAULT 0,
  6. session_touched TIMESTAMP DEFAULT CURRENT_TIMESTAMP
  7. );
  8. DROP TABLE IF EXISTS character;
  9. CREATE TABLE character (
  10. character_id INTEGER PRIMARY KEY,
  11. character_name TEXT,
  12. character_token BLOB,
  13. character_refresh BLOB,
  14. character_token_expiry TIMESTAMP,
  15. character_last_verify TIMESTAMP,
  16. character_style TEXT
  17. );