当我运行我的应用程序时,我想将我的测试数据自动存储在数据库中。
以下是我要使用的数据:
INSERT INTO `crm_donation_email_types` (`id`, `emailtype`, `created_at`, `updated_at`) VALUES
(1, 'to', '2013-08-28 05:19:08', '2013-08-28 05:19:08'),
(2, 'cc', '2013-08-28 05:19:15', '2013-08-28 05:19:15'),
(3, 'bcc', '2013-08-28 05:19:26', '2013-08-28 05:19:26'),
(4, 'from', '2013-08-28 05:19:35', '2013-08-28 05:19:35');
我想知道在哪里添加这些行??我也不想运行,rake db:migration/seed
但我希望当我启动我的应用程序(如启动服务器)时,它应该包含在数据库中。任何想法???