1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-06 09:54:03 +00:00

Apply fixes suggested by @carlos-mora

This commit is contained in:
Samuel Štancl 2019-08-11 20:19:09 +02:00
parent 429b1779f5
commit f073926cfb
3 changed files with 11 additions and 7 deletions

View file

@ -16,7 +16,7 @@ class CreateTenantsTable extends Migration
Schema::create('tenants', function (Blueprint $table) {
$table->string('uuid', 36)->primary();
$table->string('domain', 255)->index();
$table->string('data', 1024)->default('{}');
$table->json('data')->default('{}');
});
}