blazor-lumen-boilerplate

Creating a Table

For additional information about database migrations read the Laravel migration documentation.

Run the following command:

# Replace 'examples' with your desired table name
php ./Server/artisan make:migration create_examples_table

Make sure the generated file includes the following table columns:

$table->id()->autoIncrement();
$table->uuid("uid");
$table->timestamps();

Now that your table has been created and you’ve added the nessessary columns read the creating a modle how-to guide.