-
Notifications
You must be signed in to change notification settings - Fork 322
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(warehouse): handle schema change (#2654)
- Loading branch information
1 parent
5d466d3
commit d01f98b
Showing
5 changed files
with
321 additions
and
240 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package model | ||
|
||
type SchemaType string | ||
|
||
const ( | ||
StringDataType SchemaType = "string" | ||
BooleanDataType SchemaType = "boolean" | ||
IntDataType SchemaType = "int" | ||
BigIntDataType SchemaType = "bigint" | ||
FloatDataType SchemaType = "float" | ||
JSONDataType SchemaType = "json" | ||
TextDataType SchemaType = "text" | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.