Browse Source

Change usr yod column data type to year

Fixes #25
pull/30/head
Nafies Luthfi 7 years ago
parent
commit
3da89bf5f2
  1. 2
      database/migrations/2014_10_12_000000_create_users_table.php

2
database/migrations/2014_10_12_000000_create_users_table.php

@ -24,7 +24,7 @@ class CreateUsersTable extends Migration
$table->date('dob')->nullable();
$table->unsignedTinyInteger('birth_order')->nullable();
$table->date('dod')->nullable();
$table->date('yod')->nullable();
$table->year('yod')->nullable();
$table->string('email')->unique()->nullable();
$table->string('password')->nullable();
$table->string('address')->nullable();

Loading…
Cancel
Save