fixes
This commit is contained in:
@@ -14,7 +14,7 @@ class CreateBotanicFamiliesTable extends Migration {
|
||||
{
|
||||
Schema::create('botanic_families', function(Blueprint $table)
|
||||
{
|
||||
$table->integer('id')->nullable();
|
||||
$table->increments('id');
|
||||
$table->string('name', 50)->nullable();
|
||||
$table->string('alias', 50)->nullable();
|
||||
$table->string('latin', 50)->nullable();
|
||||
|
||||
@@ -14,7 +14,7 @@ class CreateBotanicGenresTable extends Migration {
|
||||
{
|
||||
Schema::create('botanic_genres', function(Blueprint $table)
|
||||
{
|
||||
$table->integer('id', true);
|
||||
$table->increments('id');
|
||||
$table->integer('family_id')->nullable();
|
||||
$table->string('name', 50)->nullable();
|
||||
$table->string('alias', 50)->nullable();
|
||||
|
||||
Reference in New Issue
Block a user