Setup Database Table
Create a table
- go to your edinburgh.domains dashboard
- go to phpMyAdmin
- Select your database
Username_DatabaseName
- click
New
- add a new table named
simpleModel
with these columns - You will need to add an additional column
Name | Type | Length/Values | Index | A_I |
---|---|---|---|---|
id | BIGINT | - | Primary | x |
name | VARCHAR | 200 | - | - |
colour | VARCHAR | 200 | - | - |
- you can leave other unmentioned attributes blank.
- when you check
A_I
orPrimary
just clickGo
on the pop-up
- click
Save