Archived
1
0
Disbranĉigi 0
Ĉi tiu deponejo arĥiviĝis je 2024-01-28. Vi povas vidi kaj elŝuti dosierojn, sed ne povas puŝi nek raporti problemojn nek tirpeti.
blagoblag/docs/database_spec.txt
2019-02-13 20:43:32 -06:00

24 lines
808 B
Plaintext

===============================================================================
DATABASE SPEC
===============================================================================
Anything supported by DBO (MySQL, MS SQL, Oracles, PostgreSQL, ODBC, Interbase,
SQLite, IBM DB2) will work just fine.
The database name will be fetched from the "config.ini" file-- and a table
will be automatically created as necessary.
The tables used by Blagoblag are:
posts (title varchar(200), date datetime, author smallint,
text longtext)
users (id smallint primary key, username varchar(20),
biography longtext, email varchar(50),
website varchar(50), password_hash varchar(80),
full_name varchar(50), login varchar(20))
comments (id smallint primary key, displayname varchar(20),
text text, date datetime)