phpMyAdminが無い環境でも、MySQLは正常に動いてますので、DBの中を確認することは可能です。
以下のコマンドをご利用ください。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
[vagrant@localhost fuelphp]$ mysql -u root -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. mysql> use fuelphp; Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A Database changed mysql> show tables; +-------------------+ | Tables_in_fuelphp | +-------------------+ | migration | | requests | +-------------------+ 2 rows in set (0.00 sec) mysql> show columns from requests; +------------+------------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +------------+------------------+------+-----+---------+----------------+ | id | int(11) unsigned | NO | PRI | NULL | auto_increment | | body | varchar(255) | NO | | NULL | | | ip | varchar(255) | NO | | NULL | | | created_at | int(11) | YES | | NULL | | | updated_at | int(11) | YES | | NULL | | +------------+------------------+------+-----+---------+----------------+ 5 rows in set (0.01 sec) mysql> select * from requests; +----+----------------------------------+-----------+------------+------------+ | id | body | ip | created_at | updated_at | +----+----------------------------------+-----------+------------+------------+ | 1 | hello this is body area. thanks! | 192.0.0.0 | 1573500535 | 1573500535 | +----+----------------------------------+-----------+------------+------------+ 1 row in set (0.00 sec) |