forked from pterodactyl/panel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path2015_12_03_211643_add_timestamps_to_tables.php
More file actions
87 lines (71 loc) · 2.28 KB
/
Copy path2015_12_03_211643_add_timestamps_to_tables.php
File metadata and controls
87 lines (71 loc) · 2.28 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class AddTimestampsToTables extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('allocations', function (Blueprint $table) {
$table->timestamps();
});
Schema::table('api', function (Blueprint $table) {
$table->timestamps();
});
Schema::table('api_permissions', function (Blueprint $table) {
$table->timestamps();
});
Schema::table('locations', function (Blueprint $table) {
$table->timestamps();
});
Schema::table('nodes', function (Blueprint $table) {
$table->timestamps();
});
Schema::table('permissions', function (Blueprint $table) {
$table->timestamps();
});
Schema::table('subusers', function (Blueprint $table) {
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('allocations', function (Blueprint $table) {
$table->dropColumn('created_at');
$table->dropColumn('updated_at');
});
Schema::table('api', function (Blueprint $table) {
$table->dropColumn('created_at');
$table->dropColumn('updated_at');
});
Schema::table('api_permissions', function (Blueprint $table) {
$table->dropColumn('created_at');
$table->dropColumn('updated_at');
});
Schema::table('locations', function (Blueprint $table) {
$table->dropColumn('created_at');
$table->dropColumn('updated_at');
});
Schema::table('nodes', function (Blueprint $table) {
$table->dropColumn('created_at');
$table->dropColumn('updated_at');
});
Schema::table('permissions', function (Blueprint $table) {
$table->dropColumn('created_at');
$table->dropColumn('updated_at');
});
Schema::table('subusers', function (Blueprint $table) {
$table->dropColumn('created_at');
$table->dropColumn('updated_at');
});
}
}