-
-
Notifications
You must be signed in to change notification settings - Fork 204
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
What happened?
I changed the DB_CONNECTION
in the .env to sqlite
per the docs. I also commented out the rest of the DB_
items in the env.
I have a simple migration:
Schema::create('feeds', function (Blueprint $table) {
$table->id();
$table->string('url');
$table->dateTime('last_updated')->nullable();
$table->timestamps();
});
When attempting to store an item in the db I get the following error:
PS: I did create the `database.sqlite in the Laravel database dir - I don't think that is required though.
How to reproduce the bug
Create a migration, model and insert data (from the menubar/livewire). Simple create operation.
Package Version
0.1.1
PHP Version
8.1.17
Laravel Version
10.16.0
Which operating systems does with happen with?
macOS
Notes
No response
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working