18 if ($this->hasTable(
"users_sessions")) {
22 $table = $this->table(
"users_sessions", [
24 'primary_key' => [
"session"],
26 'encoding' =>
"utf8mb4",
27 'collation' =>
"utf8mb4_general_ci",
30 $table->addColumn(
'session',
'string', [
32 'limit' => MysqlAdapter::TEXT_SMALL,
34 'collation' =>
"utf8_general_ci",
37 $table->addColumn(
'ts',
'integer', [
40 'limit' => MysqlAdapter::INT_REGULAR,
45 $table->addColumn(
'data',
'blob', [
47 'limit' => MysqlAdapter::BLOB_MEDIUM,