-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrandomize_data.php
70 lines (63 loc) · 1.8 KB
/
randomize_data.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?php
require_once('populate_column.php'); //which will load it as a function only...
$randomize_these_fields = [
'DURC_northwind_model' => [
'customer' => [
'emailAddress' => 'email',
'businessPhone' => 'phoneNumber',
'homePhone' => 'phoneNumber',
'mobilePhone' => 'phoneNumber',
'faxNumber' => 'phoneNumber',
'address' => 'streetAddress',
'zipPostalCode' => 'postcode',
'webPage' => 'url',
'notes' => 'latin',
'attachments' => 'latin',
'random_date' => 'date',
'created_at' => 'date',
'updated_at' => 'date',
],
'employee' => [
'businessPhone' => 'phoneNumber',
'homePhone' => 'phoneNumber',
'mobilePhone' => 'phoneNumber',
'faxNumber' => 'phoneNumber',
'address' => 'streetAddress',
'zipPostalCode' => 'postcode',
],
'shipper' => [
'lastName' => 'lastName',
'firstName' => 'firstName',
'emailAddress' => 'email',
'jobTitle' => 'jobTitle',
'homePhone' => 'phoneNumber',
'mobilePhone' => 'phoneNumber',
'faxNumber' => 'phoneNumber',
'address' => 'streetAddress',
'zipPostalCode' => 'postcode',
'webPage' => 'url',
'notes' => 'latin',
'attachments' => 'latin',
],
'supplier' => [
'lastName' => 'lastName',
'firstName' => 'firstName',
'emailAddress' => 'email',
'homePhone' => 'phoneNumber',
'mobilePhone' => 'phoneNumber',
'faxNumber' => 'phoneNumber',
'address' => 'streetAddress',
'zipPostalCode' => 'postcode',
'webPage' => 'url',
'notes' => 'latin',
'attachments' => 'latin',
],
],
];
foreach($randomize_these_fields as $this_database => $tables){
foreach($tables as $this_table => $columns){
foreach($columns as $this_column => $faker_field){
populate_column($this_database,$this_table,$this_column,$faker_field);
}
}
}