Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
1e41eb8c
Commit
1e41eb8c
authored
Jun 13, 2016
by
bergquist
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tech(alerting): remove frequency from alert model
parent
94f05983
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
2 deletions
+0
-2
pkg/models/alert.go
+0
-1
pkg/services/sqlstore/migrations/alert_mig.go
+0
-1
No files found.
pkg/models/alert.go
View file @
1e41eb8c
...
...
@@ -16,7 +16,6 @@ type Alert struct {
State
string
Scheduler
int64
Enabled
bool
Frequency
int
Created
time
.
Time
Updated
time
.
Time
...
...
pkg/services/sqlstore/migrations/alert_mig.go
View file @
1e41eb8c
...
...
@@ -18,7 +18,6 @@ func addAlertMigrations(mg *Migrator) {
{
Name
:
"state"
,
Type
:
DB_NVarchar
,
Length
:
255
,
Nullable
:
false
},
{
Name
:
"expression"
,
Type
:
DB_Text
,
Nullable
:
false
},
{
Name
:
"scheduler"
,
Type
:
DB_BigInt
,
Nullable
:
false
},
{
Name
:
"frequency"
,
Type
:
DB_BigInt
,
Nullable
:
false
},
{
Name
:
"enabled"
,
Type
:
DB_Bool
,
Nullable
:
false
},
{
Name
:
"created"
,
Type
:
DB_DateTime
,
Nullable
:
false
},
{
Name
:
"updated"
,
Type
:
DB_DateTime
,
Nullable
:
false
},
...
...
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