delphimvcframework/samples/serversentevents2/SysConstantsU.pas

17 lines
308 B
ObjectPascal
Raw Normal View History

2017-10-09 10:41:38 +02:00
unit SysConstantsU;
interface
const
BASEURL = '/api';
SQL_CREATE_TABLE = 'CREATE TABLE IF NOT EXISTS notifications ( ' + sLineBreak +
'id INTEGER PRIMARY KEY, ' + sLineBreak +
'value text NOT NULL, ' + sLineBreak +
'created_at text NOT NULL ' + sLineBreak +
')';
implementation
end.