Skip to content
Next
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Minds Backend - Engine
Project
Project
Details
Activity
Releases
Dependency List
Cycle Analytics
Insights
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
167
Issues
167
List
Boards
Labels
Service Desk
Milestones
Merge Requests
49
Merge Requests
49
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Backend - Engine
Commits
a9152cfa
Commit
a9152cfa
authored
11 minutes ago
by
Mark Harding
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(chore): use Bigint vs Varint
parent
c4d7ec3c
hotfix/cdb-deprec-569
1 merge request
!245
(refactor): Deprecate CockroachDB
Pipeline
#69152171
passed with stages
in 8 minutes and 23 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
Repository.php
Core/Hashtags/Trending/Repository.php
+2
-2
cassandra-provision.cql
Core/Provisioner/Provisioners/cassandra-provision.cql
+1
-1
No files found.
Core/Hashtags/Trending/Repository.php
View file @
a9152cfa
...
...
@@ -3,7 +3,7 @@
namespace
Minds\Core\Hashtags\Trending
;
use
Cassandra\Timestamp
;
use
Cassandra\
Var
int
;
use
Cassandra\
Big
int
;
use
Minds\Core\Data\Cassandra\Client
as
CassandraClient
;
use
Minds\Core\Data\Cassandra\Prepared\Custom
;
use
Minds\Core\Data\ElasticSearch\Client
as
ElasticSearchClient
;
...
...
@@ -155,7 +155,7 @@ class Repository
$values
=
[
$tag
,
new
Timestamp
(
time
()),
new
Var
int
(
$admin_guid
),
new
Big
int
(
$admin_guid
),
];
$prepared
=
new
Custom
();
...
...
This diff is collapsed.
Click to expand it.
Core/Provisioner/Provisioners/cassandra-provision.cql
View file @
a9152cfa
...
...
@@ -1410,7 +1410,7 @@ CREATE TABLE minds.update_markers (
CREATE TABLE minds.hidden_hashtags (
hashtag text,
admin_guid
var
int,
admin_guid
big
int,
hidden_since timestamp,
PRIMARY KEY (hashtag)
);
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment