hasTable('polaroid')) { $table = $schema->createTable('polaroid'); $table->addColumn('id', 'integer', [ 'autoincrement' => true, 'notnull' => true, ]); $table->addColumn('user_id', 'string', [ 'notnull' => true, 'length' => 200, ]); $table->addColumn('date_taken', Types::DATETIME, [ 'notnull' => false, ]); $table->addColumn('file_id', Types::BIGINT, [ 'notnull' => true, 'length' => 20, ]); $table->addColumn('day_id', Types::INTEGER, [ 'notnull' => true, ]); $table->addColumn('is_video', Types::BOOLEAN, [ 'notnull' => false, 'default' => false ]); $table->addColumn('mtime', Types::INTEGER, [ 'notnull' => true, ]); $table->setPrimaryKey(['id']); $table->addIndex(['user_id'], 'polaroid_user_id_index'); $table->addIndex(['user_id', 'day_id'], 'polaroid_ud_index'); $table->addUniqueIndex(['user_id', 'file_id'], 'polaroid_day_uf_ui'); } if ($schema->hasTable('filecache')) { $table = $schema->getTable('filecache'); $table->addIndex(['path'], 'polaroid_path_index'); } return $schema; } }