-
-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
33 changed files
with
936 additions
and
2 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 |
---|---|---|
|
@@ -14,6 +14,7 @@ val fakers = listOf( | |
"books", | ||
"commerce", | ||
"creatures", | ||
"databases", | ||
"edu", | ||
"games", | ||
"humor", | ||
|
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
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
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,11 @@ | ||
# START database_provider_dict | ||
en: | ||
faker: | ||
database: | ||
column_name: | ||
- id | ||
- name | ||
- created_at | ||
- updated_at | ||
# END database_provider_dict |
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,70 @@ | ||
# START mariadb_provider_dict | ||
en: | ||
faker: | ||
database: | ||
mariadb: | ||
data_type: | ||
# Numeric | ||
- TINYINT | ||
- SMALLINT | ||
- MEDIUMINT | ||
- INT | ||
- INTEGER | ||
- BIGINT | ||
- DECIMAL | ||
- DEC | ||
- NUMERIC | ||
- FIXED | ||
- FLOAT | ||
- DOUBLE | ||
- REAL | ||
|
||
# Date and Time | ||
- DATE | ||
- TIME | ||
- DATETIME | ||
- TIMESTAMP | ||
|
||
# Character Strings | ||
- CHAR | ||
- VARCHAR | ||
- TINYTEXT | ||
- TEXT | ||
- MEDIUMTEXT | ||
- LONGTEXT | ||
- ENUM | ||
- SET | ||
|
||
# Binary | ||
- BINARY | ||
- VARBINARY | ||
- TINYBLOB | ||
- BLOB | ||
- MEDIUMBLOB | ||
- LONGBLOB | ||
|
||
# JSON | ||
- JSON | ||
|
||
# Spatial | ||
- GEOMETRY | ||
- POINT | ||
- LINESTRING | ||
- POLYGON | ||
- MULTIPOINT | ||
- MULTILINESTRING | ||
- MULTIPOLYGON | ||
- GEOMETRYCOLLECTION | ||
engine: | ||
- InnoDB | ||
- MyISAM | ||
- Aria | ||
- MEMORY | ||
- CSV | ||
- ARCHIVE | ||
- BLACKHOLE | ||
- MERGE | ||
- FEDERATED | ||
- TokuDB | ||
- Spider | ||
# END mariadb_provider_dict |
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,44 @@ | ||
# START ms_sql_server_provider_dict | ||
en: | ||
faker: | ||
database: | ||
ms_sql_server: | ||
data_type: | ||
# Exact Numeric | ||
- BIT | ||
- TINYINT | ||
- SMALLINT | ||
- INT | ||
- BIGINT | ||
- DECIMAL | ||
|
||
# Approximative Numeric | ||
- FLOAT | ||
- REAL | ||
- DATE | ||
- TIME | ||
|
||
# Date and Time | ||
- DATETIME | ||
- DATETIME2 | ||
- SMALLDATETIME | ||
- DATETIMEOFFSET | ||
|
||
# Character Strings | ||
- CHAR | ||
- VARCHAR | ||
- TEXT | ||
|
||
# Binary | ||
- BINARY | ||
- VARBINARY | ||
- IMAGE | ||
|
||
# Other | ||
- UNIQUEIDENTIFIER | ||
- XML | ||
- CURSOR | ||
- SQL_VARIANT | ||
- TABLE | ||
- GEOMETRY | ||
# END ms_sql_server_provider_dict |
Oops, something went wrong.