Blame view

database/migrations/2018_07_07_000000_modify_date_column.php 1.35 KB
b7c7a5f6   Alexey Boroda   first commit
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
  <?php
  
  use Illuminate\Database\Migrations\Migration;
  use Illuminate\Database\Schema\Blueprint;
  
  class ModifyDateColumn extends Migration
  {
      /**
       * Run the migrations.
       *
       * @return void
       */
      public function up()
      {
          Schema::table('bills', function (Blueprint $table) {
              $table->dateTime('billed_at')->change();
              $table->dateTime('due_at')->change();
          });
  
          Schema::table('bill_payments', function (Blueprint $table) {
              $table->dateTime('paid_at')->change();
          });
  
          Schema::table('invoices', function (Blueprint $table) {
              $table->dateTime('invoiced_at')->change();
              $table->dateTime('due_at')->change();
          });
  
          Schema::table('invoice_payments', function (Blueprint $table) {
              $table->dateTime('paid_at')->change();
          });
  
          Schema::table('payments', function (Blueprint $table) {
              $table->dateTime('paid_at')->change();
          });
  
          Schema::table('revenues', function (Blueprint $table) {
              $table->dateTime('paid_at')->change();
          });
  
          Schema::table('recurring', function (Blueprint $table) {
              $table->dateTime('started_at')->change();
          });
      }
  
      /**
       * Reverse the migrations.
       *
       * @return void
       */
      public function down()
      {
  
      }
  }