aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorUmair Jibran <[email protected]>2021-10-03 18:05:01 +0500
committerUmair Jibran <[email protected]>2021-10-03 18:05:01 +0500
commitf108ab39447aaefd2b82c7adb80745ed28ade52b (patch)
tree227e053139bfecc683674e112a0c933698b5ab77 /lib
parent279c37ef125c8bf11e25564ac55f2677c0ca7f56 (diff)
downloadfaker-f108ab39447aaefd2b82c7adb80745ed28ade52b.tar.xz
faker-f108ab39447aaefd2b82c7adb80745ed28ade52b.zip
add database
Diffstat (limited to 'lib')
-rw-r--r--lib/locales/ur/database/collation.js9
-rw-r--r--lib/locales/ur/database/column.js16
-rw-r--r--lib/locales/ur/database/engine.js8
-rw-r--r--lib/locales/ur/database/index.js6
-rw-r--r--lib/locales/ur/database/type.js26
5 files changed, 65 insertions, 0 deletions
diff --git a/lib/locales/ur/database/collation.js b/lib/locales/ur/database/collation.js
new file mode 100644
index 00000000..7c34da99
--- /dev/null
+++ b/lib/locales/ur/database/collation.js
@@ -0,0 +1,9 @@
+module['exports'] = [
+ 'utf8_unicode_ci',
+ 'utf8_general_ci',
+ 'utf8_bin',
+ 'ascii_bin',
+ 'ascii_general_ci',
+ 'cp1250_bin',
+ 'cp1250_general_ci',
+];
diff --git a/lib/locales/ur/database/column.js b/lib/locales/ur/database/column.js
new file mode 100644
index 00000000..2670a286
--- /dev/null
+++ b/lib/locales/ur/database/column.js
@@ -0,0 +1,16 @@
+module['exports'] = [
+ 'id',
+ 'title',
+ 'name',
+ 'email',
+ 'phone',
+ 'token',
+ 'group',
+ 'category',
+ 'password',
+ 'comment',
+ 'avatar',
+ 'status',
+ 'createdAt',
+ 'updatedAt',
+];
diff --git a/lib/locales/ur/database/engine.js b/lib/locales/ur/database/engine.js
new file mode 100644
index 00000000..14f99e5e
--- /dev/null
+++ b/lib/locales/ur/database/engine.js
@@ -0,0 +1,8 @@
+module['exports'] = [
+ 'InnoDB',
+ 'MyISAM',
+ 'MEMORY',
+ 'CSV',
+ 'BLACKHOLE',
+ 'ARCHIVE',
+];
diff --git a/lib/locales/ur/database/index.js b/lib/locales/ur/database/index.js
new file mode 100644
index 00000000..d2e334c7
--- /dev/null
+++ b/lib/locales/ur/database/index.js
@@ -0,0 +1,6 @@
+var database = {};
+module['exports'] = database;
+database.collation = require('./collation');
+database.column = require('./column');
+database.engine = require('./engine');
+database.type = require('./type');
diff --git a/lib/locales/ur/database/type.js b/lib/locales/ur/database/type.js
new file mode 100644
index 00000000..89fd7586
--- /dev/null
+++ b/lib/locales/ur/database/type.js
@@ -0,0 +1,26 @@
+module['exports'] = [
+ 'int',
+ 'varchar',
+ 'text',
+ 'date',
+ 'datetime',
+ 'tinyint',
+ 'time',
+ 'timestamp',
+ 'smallint',
+ 'mediumint',
+ 'bigint',
+ 'decimal',
+ 'float',
+ 'double',
+ 'real',
+ 'bit',
+ 'boolean',
+ 'serial',
+ 'blob',
+ 'binary',
+ 'enum',
+ 'set',
+ 'geometry',
+ 'point',
+];