hasTable('favorites')) { $table = $schema->createTable('favorites'); $table->addColumn('id', 'integer', [ 'autoincrement' => true, 'notnull' => true, ]); $table->addColumn('stationuuid', 'string', [ 'notnull' => true, ]); $table->addColumn('user_id', 'string', [ 'notnull' => true, ]); $table->addColumn('name', 'text', [ 'notnull' => true, ]); $table->addColumn('favicon', 'text'); $table->addColumn('urlresolved', 'text'); $table->setPrimaryKey(['id']); $table->addIndex(['user_id'], 'favorites_user_id_index'); } if (!$schema->hasTable('recent')) { $table = $schema->createTable('recent'); $table->addColumn('id', 'integer', [ 'autoincrement' => true, 'notnull' => true, ]); $table->addColumn('stationuuid', 'string', [ 'notnull' => true, ]); $table->addColumn('user_id', 'string', [ 'notnull' => true, ]); $table->addColumn('name', 'text', [ 'notnull' => true, ]); $table->addColumn('favicon', 'text'); $table->addColumn('urlresolved', 'text'); $table->setPrimaryKey(['id']); $table->addIndex(['user_id'], 'recent_user_id_index'); } return $schema; } }