Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Feeds
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
MickGe
Feeds
Commits
539f6ee6
Commit
539f6ee6
authored
8 years ago
by
Andrew Dolgov
Browse files
Options
Downloads
Patches
Plain Diff
update schema 128 to properly set ttrss_feeds.last_updated default value to NULL
parent
5cbd1fe8
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
schema/versions/mysql/128.sql
+3
-0
3 additions, 0 deletions
schema/versions/mysql/128.sql
with
3 additions
and
0 deletions
schema/versions/mysql/128.sql
+
3
−
0
View file @
539f6ee6
BEGIN
;
BEGIN
;
update
ttrss_feeds
set
last_updated
=
NULL
;
alter
table
ttrss_feeds
modify
column
last_updated
datetime
DEFAULT
NULL
;
alter
table
ttrss_feeds
add
column
feed_language
varchar
(
100
);
alter
table
ttrss_feeds
add
column
feed_language
varchar
(
100
);
update
ttrss_feeds
set
feed_language
=
''
;
update
ttrss_feeds
set
feed_language
=
''
;
alter
table
ttrss_feeds
change
feed_language
feed_language
varchar
(
100
)
not
null
;
alter
table
ttrss_feeds
change
feed_language
feed_language
varchar
(
100
)
not
null
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment