foreveralone

foreveralone Git Source Tree


Root/web/application/migrations/1.php

<?php

use \vendor\DB\DB;

echo "Creating session table..." . PHP_EOL;
$autoIncrement = \system\engine\HF_Model::AUTOINCREMENT_SQLITE;

DB::query("CREATE TABLE sessions (
          id INTEGER PRIMARY KEY $autoIncrement,
          sessionid VARCHAR(255),
          ip VARCHAR(255),
          userAgent VARCHAR(255),
          data TEXT,
          waiting TINYINT(1),
          to_user INTEGER,
          lastPing INTEGER,
          random TINYINT(1)
)");

Archive Download this file

Branches

Tags

Number of commits:
Page rendered in 0.07833s using 11 queries.