Update 2016_01_23_195851_add_api_keys.php

This commit is contained in:
Dane Everitt 2016-01-23 20:00:11 -05:00
parent 1433adb54d
commit 6fd2b28a80
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ class AddApiKeys extends Migration
$table->increments('id');
$table->char('public', 16);
$table->text('secret');
$table->json('allowed_ips')->nullable();
$table->text('allowed_ips')->nullable();
$table->timestamps();
});
}