Browse Source

init auth, identity tables

PHP-GTK3
yggverse 4 months ago
parent
commit
7e150ebea2
  1. 23
      src/Model/Database.php

23
src/Model/Database.php

@ -43,6 +43,17 @@ class Database
); );
// Init tables // Init tables
$this->_connection->query('
CREATE TABLE IF NOT EXISTS `auth`
(
`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
`time` INTEGER NOT NULL,
`active` INTEGER NOT NULL,
`identity` INTEGER NOT NULL,
`request` VARCHAR(1024) NOT NULL
)
');
$this->_connection->query(' $this->_connection->query('
CREATE TABLE IF NOT EXISTS `bookmark` CREATE TABLE IF NOT EXISTS `bookmark`
( (
@ -77,6 +88,18 @@ class Database
) )
'); ');
$this->_connection->query('
CREATE TABLE IF NOT EXISTS `identity`
(
`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
`time` INTEGER NOT NULL,
`active` INTEGER NOT NULL,
`name` VARCHAR(255),
`crt` TEXT NOT NULL,
`key` TEXT NOT NULL
)
');
$this->_connection->query(' $this->_connection->query('
CREATE TABLE IF NOT EXISTS `session` CREATE TABLE IF NOT EXISTS `session`
( (

Loading…
Cancel
Save