7. コマンドを実行して名前を登録する
Commandクラスのconfigure()メソッド内で、setName()したものを、
“app/console”の後に記述し、その後に必須引数である名前を入力
して実行します。
1 2 3 4 |
$ php app/console dbcommand:persist HO-getege Hello HO-getege $ php app/console dbcommand:persist test Hello test |
実行後、mysqlサーバに接続し、データが挿入されていることを確認してみてください。
以下のように、名前と日時が挿入されているはずです。
1 2 3 4 5 6 7 8 |
mysql> select * from Member; +----+-----------+---------------------+---------------------+ | id | name | createdAt | updatedAt | +----+-----------+---------------------+---------------------+ | 1 | HO-getege | 2012-12-17 08:44:39 | 2012-12-17 08:44:39 | | 2 | test | 2012-12-17 10:46:05 | 2012-12-17 10:46:05 | +----+-----------+---------------------+---------------------+ 2 rows in set (0.00 sec) |