Welcome Guest, Not a member yet? Register   Sign In
Problem on migration use
#2

(This post was last modified: 05-20-2019, 06:35 AM by MGatner.)

The issue isn't with your database group but rather with a table in your database that is expected to have a `group` column which is missing. I'd bet 99% that this is the `migrations` table which is created automatically upon using migrations and should look like this:

+-----------+--------------+------+-----+---------+-------+
| Field     | Type         | Null | Key | Default | Extra |
+-----------+--------------+------+-----+---------+-------+
| version   | varchar(255) | NO   |     | NULL    |       |
| name      | varchar(255) | NO   |     | NULL    |       |
| group     | varchar(255) | NO   |     | NULL    |       |
| namespace | varchar(255) | NO   |     | NULL    |       |
| time      | int(11)      | NO   |     | NULL    |       |
+-----------+--------------+------+-----+---------+-------+


If you have access to the database check the integrity of you migrations table and either repair it by adding `groups` or (if you haven't run any migrations yet) drop it and the framework will recreate it.
Reply


Messages In This Thread
Problem on migration use - by cedreek - 05-18-2019, 05:24 AM
RE: Problem on migration use - by MGatner - 05-20-2019, 06:35 AM
RE: Problem on migration use - by cedreek - 05-21-2019, 01:15 AM
RE: Problem on migration use - by muuucho - 12-20-2019, 06:07 AM
RE: Problem on migration use - by MGatner - 12-20-2019, 06:58 AM
RE: Problem on migration use - by muuucho - 12-20-2019, 12:28 PM



Theme © iAndrew 2016 - Forum software by © MyBB