You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I excecuted the query directly in sqlite3 without the charset:
CREATE TABLE IF NOT EXISTS `fuel_migration` (
`type` varchar(25) NOT NULL,
`name` varchar(50) NOT NULL,
`migration` varchar(100) DEFAULT '' NOT NULL
);
and the table was created. Something seems to be wrong with the charset.
The text was updated successfully, but these errors were encountered:
Didn't get around to it before releasing 1.8 (which was needed because of PHP7 compatibility).
But there is now a schema class which is used by DBUtil, which can be overloaded per driver type, so it is possible to implement this. I'll see if I can get around to doing this later.
I have created and configurate a SQLite database connection and want to run the migrations.
If I execute the migration with
env FUEL_ENV=test php oil refine migrate:current
I got this error:
If I excecuted the query directly in sqlite3 without the charset:
and the table was created. Something seems to be wrong with the charset.
The text was updated successfully, but these errors were encountered: