From 02c0b78c15c33baab16d70467a05e1a024d7d80d Mon Sep 17 00:00:00 2001 From: Neil Smith Date: Fri, 17 Jul 2009 10:59:06 +0000 Subject: [PATCH] Basic HTML display done --- app/controllers/feed_controller.rb | 13 + app/helpers/feed_helper.rb | 2 + app/models/feed_item.rb | 2 + app/views/feed/index.html.erb | 6 + app/views/feed/show.html.erb | 7 + app/views/feed/update.html.erb | 2 + .../20090717095501_create_feed_items.rb | 19 + db/migrate/20090717095948_add_test_data.rb | 16 + db/schema.rb | 24 + log/development.log | 810 ++++++++++++++++++ log/production.log | 0 log/server.log | 0 log/test.log | 0 test/fixtures/feed_items.yml | 11 + test/functional/feed_controller_test.rb | 8 + test/unit/feed_item_test.rb | 8 + test/unit/helpers/feed_helper_test.rb | 4 + 17 files changed, 932 insertions(+) create mode 100644 app/controllers/feed_controller.rb create mode 100644 app/helpers/feed_helper.rb create mode 100644 app/models/feed_item.rb create mode 100644 app/views/feed/index.html.erb create mode 100644 app/views/feed/show.html.erb create mode 100644 app/views/feed/update.html.erb create mode 100644 db/migrate/20090717095501_create_feed_items.rb create mode 100644 db/migrate/20090717095948_add_test_data.rb create mode 100644 db/schema.rb create mode 100644 log/development.log create mode 100644 log/production.log create mode 100644 log/server.log create mode 100644 log/test.log create mode 100644 test/fixtures/feed_items.yml create mode 100644 test/functional/feed_controller_test.rb create mode 100644 test/unit/feed_item_test.rb create mode 100644 test/unit/helpers/feed_helper_test.rb diff --git a/app/controllers/feed_controller.rb b/app/controllers/feed_controller.rb new file mode 100644 index 0000000..f1597c0 --- /dev/null +++ b/app/controllers/feed_controller.rb @@ -0,0 +1,13 @@ +class FeedController < ApplicationController + def index + @feeds = FeedItem.find(:all, :select => 'DISTINCT feed_name') + end + + def show + @feed_items = FeedItem.find_all_by_feed_name(params[:id]) + end + + def update + end + +end diff --git a/app/helpers/feed_helper.rb b/app/helpers/feed_helper.rb new file mode 100644 index 0000000..6709856 --- /dev/null +++ b/app/helpers/feed_helper.rb @@ -0,0 +1,2 @@ +module FeedHelper +end diff --git a/app/models/feed_item.rb b/app/models/feed_item.rb new file mode 100644 index 0000000..d875a8a --- /dev/null +++ b/app/models/feed_item.rb @@ -0,0 +1,2 @@ +class FeedItem < ActiveRecord::Base +end diff --git a/app/views/feed/index.html.erb b/app/views/feed/index.html.erb new file mode 100644 index 0000000..cdac0ac --- /dev/null +++ b/app/views/feed/index.html.erb @@ -0,0 +1,6 @@ +

Feeds available

+ \ No newline at end of file diff --git a/app/views/feed/show.html.erb b/app/views/feed/show.html.erb new file mode 100644 index 0000000..374ee87 --- /dev/null +++ b/app/views/feed/show.html.erb @@ -0,0 +1,7 @@ +

Contents of feed <%= params[:id] %>

+
+ <% for item in @feed_items %> +
<%= h item.title %>
+
<%= h item.description %>
+ <% end %> +
diff --git a/app/views/feed/update.html.erb b/app/views/feed/update.html.erb new file mode 100644 index 0000000..96fff67 --- /dev/null +++ b/app/views/feed/update.html.erb @@ -0,0 +1,2 @@ +

Feed#update

+

Find me in app/views/feed/update.html.erb

diff --git a/db/migrate/20090717095501_create_feed_items.rb b/db/migrate/20090717095501_create_feed_items.rb new file mode 100644 index 0000000..f34966b --- /dev/null +++ b/db/migrate/20090717095501_create_feed_items.rb @@ -0,0 +1,19 @@ +class CreateFeedItems < ActiveRecord::Migration + def self.up + create_table :feed_items do |t| + t.string :feed_name + t.string :title + t.text :description + + t.timestamps + end + + add_index :feed_items, :feed_name + end + + def self.down + remove_index :feed_items, :feed_name + + drop_table :feed_items + end +end diff --git a/db/migrate/20090717095948_add_test_data.rb b/db/migrate/20090717095948_add_test_data.rb new file mode 100644 index 0000000..ccd7cdd --- /dev/null +++ b/db/migrate/20090717095948_add_test_data.rb @@ -0,0 +1,16 @@ +class AddTestData < ActiveRecord::Migration + def self.up + FeedItem.delete_all + (1..20).each do |item_number| + ('a'..'j').each do |feed_name| + FeedItem.create(:feed_name => "feed-#{feed_name}", + :title => "feed-#{feed_name}-item-" + sprintf("%02d", item_number), + :description => "Feed #{feed_name}, Item #{item_number} has a description") + end + end + end + + def self.down + FeedItem.delete_all + end +end diff --git a/db/schema.rb b/db/schema.rb new file mode 100644 index 0000000..677f113 --- /dev/null +++ b/db/schema.rb @@ -0,0 +1,24 @@ +# This file is auto-generated from the current state of the database. Instead of editing this file, +# please use the migrations feature of Active Record to incrementally modify your database, and +# then regenerate this schema definition. +# +# Note that this schema.rb definition is the authoritative source for your database schema. If you need +# to create the application database on another system, you should be using db:schema:load, not running +# all the migrations from scratch. The latter is a flawed and unsustainable approach (the more migrations +# you'll amass, the slower it'll run and the greater likelihood for issues). +# +# It's strongly recommended to check this file into your version control system. + +ActiveRecord::Schema.define(:version => 20090717095948) do + + create_table "feed_items", :force => true do |t| + t.string "feed_name" + t.string "title" + t.text "description" + t.datetime "created_at" + t.datetime "updated_at" + end + + add_index "feed_items", ["feed_name"], :name => "index_feed_items_on_feed_name" + +end diff --git a/log/development.log b/log/development.log new file mode 100644 index 0000000..a56b103 --- /dev/null +++ b/log/development.log @@ -0,0 +1,810 @@ + SQL (6.6ms) SET NAMES 'utf8' + SQL (0.2ms) SET SQL_AUTO_IS_NULL=0 + SQL (27.5ms) SHOW TABLES + SQL (497.4ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB + SQL (333.1ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`) + SQL (0.4ms) SHOW TABLES + SQL (20.2ms) SELECT version FROM schema_migrations +Migrating to CreateFeedItems (20090717095501) + SQL (41.4ms) CREATE TABLE `feed_items` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `feed_name` varchar(255), `title` varchar(255), `description` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB + SQL (7.3ms) CREATE INDEX `index_feed_items_on_feed_name` ON `feed_items` (`feed_name`) + SQL (0.7ms) INSERT INTO schema_migrations (version) VALUES ('20090717095501') + SQL (0.4ms) SHOW TABLES + SQL (0.4ms) SELECT version FROM schema_migrations + SQL (0.4ms) SHOW TABLES + SQL (81.2ms) SHOW FIELDS FROM `feed_items` + SQL (1.2ms) describe `feed_items` + SQL (0.6ms) SHOW KEYS FROM `feed_items` + SQL (0.2ms) SET NAMES 'utf8' + SQL (0.1ms) SET SQL_AUTO_IS_NULL=0 + SQL (0.5ms) SHOW TABLES + SQL (0.2ms) SELECT version FROM schema_migrations +Migrating to CreateFeedItems (20090717095501) +Migrating to AddTestData (20090717095948) + FeedItem Delete all (0.3ms) DELETE FROM `feed_items`  + SQL (0.3ms) SET NAMES 'utf8' + SQL (0.2ms) SET SQL_AUTO_IS_NULL=0 + SQL (0.4ms) SHOW TABLES + SQL (0.2ms) SELECT version FROM schema_migrations + SQL (0.3ms) SHOW TABLES + SQL (0.2ms) SELECT version FROM schema_migrations +Migrating to CreateFeedItems (20090717095501) + SQL (0.4ms) SHOW TABLES + SQL (0.1ms) SELECT version FROM schema_migrations + SQL (0.3ms) SHOW TABLES + SQL (1.0ms) SHOW FIELDS FROM `feed_items` + SQL (1.0ms) describe `feed_items` + SQL (0.5ms) SHOW KEYS FROM `feed_items` + SQL (0.2ms) SET NAMES 'utf8' + SQL (0.1ms) SET SQL_AUTO_IS_NULL=0 + SQL (0.3ms) SHOW TABLES + SQL (0.2ms) SELECT version FROM schema_migrations +Migrating to CreateFeedItems (20090717095501) +Migrating to AddTestData (20090717095948) + FeedItem Delete all (0.2ms) DELETE FROM `feed_items`  + FeedItem Columns (1.0ms) SHOW FIELDS FROM `feed_items` + SQL (0.1ms) BEGIN + FeedItem Create (12.2ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:42', 'feed-a-item-01', 'feed-a', 'Feed a, Item 1 has a description', '2009-07-17 10:19:42') + SQL (38.8ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:42', 'feed-b-item-01', 'feed-b', 'Feed b, Item 1 has a description', '2009-07-17 10:19:42') + SQL (0.8ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.4ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:42', 'feed-c-item-01', 'feed-c', 'Feed c, Item 1 has a description', '2009-07-17 10:19:42') + SQL (0.6ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:42', 'feed-d-item-01', 'feed-d', 'Feed d, Item 1 has a description', '2009-07-17 10:19:42') + SQL (4.1ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:42', 'feed-e-item-01', 'feed-e', 'Feed e, Item 1 has a description', '2009-07-17 10:19:42') + SQL (0.5ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:42', 'feed-f-item-01', 'feed-f', 'Feed f, Item 1 has a description', '2009-07-17 10:19:42') + SQL (0.5ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:42', 'feed-g-item-01', 'feed-g', 'Feed g, Item 1 has a description', '2009-07-17 10:19:42') + SQL (4.6ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:42', 'feed-h-item-01', 'feed-h', 'Feed h, Item 1 has a description', '2009-07-17 10:19:42') + SQL (19.7ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:42', 'feed-i-item-01', 'feed-i', 'Feed i, Item 1 has a description', '2009-07-17 10:19:42') + SQL (0.6ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:42', 'feed-j-item-01', 'feed-j', 'Feed j, Item 1 has a description', '2009-07-17 10:19:42') + SQL (0.5ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:42', 'feed-a-item-02', 'feed-a', 'Feed a, Item 2 has a description', '2009-07-17 10:19:42') + SQL (0.5ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:42', 'feed-b-item-02', 'feed-b', 'Feed b, Item 2 has a description', '2009-07-17 10:19:42') + SQL (0.5ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:42', 'feed-c-item-02', 'feed-c', 'Feed c, Item 2 has a description', '2009-07-17 10:19:42') + SQL (6.1ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:42', 'feed-d-item-02', 'feed-d', 'Feed d, Item 2 has a description', '2009-07-17 10:19:42') + SQL (0.5ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:42', 'feed-e-item-02', 'feed-e', 'Feed e, Item 2 has a description', '2009-07-17 10:19:42') + SQL (0.5ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:42', 'feed-f-item-02', 'feed-f', 'Feed f, Item 2 has a description', '2009-07-17 10:19:42') + SQL (0.5ms) COMMIT + SQL (0.2ms) BEGIN + FeedItem Create (0.4ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:42', 'feed-g-item-02', 'feed-g', 'Feed g, Item 2 has a description', '2009-07-17 10:19:42') + SQL (0.7ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.5ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:42', 'feed-h-item-02', 'feed-h', 'Feed h, Item 2 has a description', '2009-07-17 10:19:42') + SQL (0.5ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.4ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:42', 'feed-i-item-02', 'feed-i', 'Feed i, Item 2 has a description', '2009-07-17 10:19:42') + SQL (0.5ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.6ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:42', 'feed-j-item-02', 'feed-j', 'Feed j, Item 2 has a description', '2009-07-17 10:19:42') + SQL (0.5ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:42', 'feed-a-item-03', 'feed-a', 'Feed a, Item 3 has a description', '2009-07-17 10:19:42') + SQL (5.1ms) COMMIT + SQL (0.2ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:42', 'feed-b-item-03', 'feed-b', 'Feed b, Item 3 has a description', '2009-07-17 10:19:42') + SQL (0.5ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:42', 'feed-c-item-03', 'feed-c', 'Feed c, Item 3 has a description', '2009-07-17 10:19:42') + SQL (0.5ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:42', 'feed-d-item-03', 'feed-d', 'Feed d, Item 3 has a description', '2009-07-17 10:19:42') + SQL (0.5ms) COMMIT + SQL (0.2ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:42', 'feed-e-item-03', 'feed-e', 'Feed e, Item 3 has a description', '2009-07-17 10:19:42') + SQL (1.1ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:42', 'feed-f-item-03', 'feed-f', 'Feed f, Item 3 has a description', '2009-07-17 10:19:42') + SQL (0.5ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:42', 'feed-g-item-03', 'feed-g', 'Feed g, Item 3 has a description', '2009-07-17 10:19:42') + SQL (0.5ms) COMMIT + SQL (0.8ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:42', 'feed-h-item-03', 'feed-h', 'Feed h, Item 3 has a description', '2009-07-17 10:19:42') + SQL (0.6ms) COMMIT + SQL (0.7ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:42', 'feed-i-item-03', 'feed-i', 'Feed i, Item 3 has a description', '2009-07-17 10:19:42') + SQL (7.2ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:42', 'feed-j-item-03', 'feed-j', 'Feed j, Item 3 has a description', '2009-07-17 10:19:42') + SQL (1.1ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.4ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-a-item-04', 'feed-a', 'Feed a, Item 4 has a description', '2009-07-17 10:19:43') + SQL (1.5ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.4ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-b-item-04', 'feed-b', 'Feed b, Item 4 has a description', '2009-07-17 10:19:43') + SQL (3.1ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-c-item-04', 'feed-c', 'Feed c, Item 4 has a description', '2009-07-17 10:19:43') + SQL (0.5ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-d-item-04', 'feed-d', 'Feed d, Item 4 has a description', '2009-07-17 10:19:43') + SQL (0.5ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-e-item-04', 'feed-e', 'Feed e, Item 4 has a description', '2009-07-17 10:19:43') + SQL (0.5ms) COMMIT + SQL (0.2ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-f-item-04', 'feed-f', 'Feed f, Item 4 has a description', '2009-07-17 10:19:43') + SQL (0.5ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-g-item-04', 'feed-g', 'Feed g, Item 4 has a description', '2009-07-17 10:19:43') + SQL (6.3ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-h-item-04', 'feed-h', 'Feed h, Item 4 has a description', '2009-07-17 10:19:43') + SQL (0.9ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.7ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-i-item-04', 'feed-i', 'Feed i, Item 4 has a description', '2009-07-17 10:19:43') + SQL (0.6ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-j-item-04', 'feed-j', 'Feed j, Item 4 has a description', '2009-07-17 10:19:43') + SQL (0.5ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-a-item-05', 'feed-a', 'Feed a, Item 5 has a description', '2009-07-17 10:19:43') + SQL (0.5ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-b-item-05', 'feed-b', 'Feed b, Item 5 has a description', '2009-07-17 10:19:43') + SQL (10.6ms) COMMIT + SQL (0.3ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-c-item-05', 'feed-c', 'Feed c, Item 5 has a description', '2009-07-17 10:19:43') + SQL (0.5ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-d-item-05', 'feed-d', 'Feed d, Item 5 has a description', '2009-07-17 10:19:43') + SQL (0.5ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-e-item-05', 'feed-e', 'Feed e, Item 5 has a description', '2009-07-17 10:19:43') + SQL (3.9ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-f-item-05', 'feed-f', 'Feed f, Item 5 has a description', '2009-07-17 10:19:43') + SQL (0.5ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-g-item-05', 'feed-g', 'Feed g, Item 5 has a description', '2009-07-17 10:19:43') + SQL (0.5ms) COMMIT + SQL (0.2ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-h-item-05', 'feed-h', 'Feed h, Item 5 has a description', '2009-07-17 10:19:43') + SQL (4.3ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-i-item-05', 'feed-i', 'Feed i, Item 5 has a description', '2009-07-17 10:19:43') + SQL (0.5ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-j-item-05', 'feed-j', 'Feed j, Item 5 has a description', '2009-07-17 10:19:43') + SQL (0.5ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-a-item-06', 'feed-a', 'Feed a, Item 6 has a description', '2009-07-17 10:19:43') + SQL (0.5ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-b-item-06', 'feed-b', 'Feed b, Item 6 has a description', '2009-07-17 10:19:43') + SQL (0.5ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-c-item-06', 'feed-c', 'Feed c, Item 6 has a description', '2009-07-17 10:19:43') + SQL (5.2ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-d-item-06', 'feed-d', 'Feed d, Item 6 has a description', '2009-07-17 10:19:43') + SQL (0.5ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-e-item-06', 'feed-e', 'Feed e, Item 6 has a description', '2009-07-17 10:19:43') + SQL (0.5ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-f-item-06', 'feed-f', 'Feed f, Item 6 has a description', '2009-07-17 10:19:43') + SQL (3.7ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-g-item-06', 'feed-g', 'Feed g, Item 6 has a description', '2009-07-17 10:19:43') + SQL (4.7ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-h-item-06', 'feed-h', 'Feed h, Item 6 has a description', '2009-07-17 10:19:43') + SQL (4.7ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-i-item-06', 'feed-i', 'Feed i, Item 6 has a description', '2009-07-17 10:19:43') + SQL (4.8ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.5ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-j-item-06', 'feed-j', 'Feed j, Item 6 has a description', '2009-07-17 10:19:43') + SQL (4.7ms) COMMIT + SQL (0.4ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-a-item-07', 'feed-a', 'Feed a, Item 7 has a description', '2009-07-17 10:19:43') + SQL (2.7ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-b-item-07', 'feed-b', 'Feed b, Item 7 has a description', '2009-07-17 10:19:43') + SQL (4.7ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-c-item-07', 'feed-c', 'Feed c, Item 7 has a description', '2009-07-17 10:19:43') + SQL (4.2ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.4ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-d-item-07', 'feed-d', 'Feed d, Item 7 has a description', '2009-07-17 10:19:43') + SQL (4.8ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-e-item-07', 'feed-e', 'Feed e, Item 7 has a description', '2009-07-17 10:19:43') + SQL (4.7ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-f-item-07', 'feed-f', 'Feed f, Item 7 has a description', '2009-07-17 10:19:43') + SQL (4.8ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-g-item-07', 'feed-g', 'Feed g, Item 7 has a description', '2009-07-17 10:19:43') + SQL (4.7ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-h-item-07', 'feed-h', 'Feed h, Item 7 has a description', '2009-07-17 10:19:43') + SQL (3.9ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-i-item-07', 'feed-i', 'Feed i, Item 7 has a description', '2009-07-17 10:19:43') + SQL (3.5ms) COMMIT + SQL (0.2ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-j-item-07', 'feed-j', 'Feed j, Item 7 has a description', '2009-07-17 10:19:43') + SQL (4.4ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-a-item-08', 'feed-a', 'Feed a, Item 8 has a description', '2009-07-17 10:19:43') + SQL (4.9ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-b-item-08', 'feed-b', 'Feed b, Item 8 has a description', '2009-07-17 10:19:43') + SQL (4.8ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-c-item-08', 'feed-c', 'Feed c, Item 8 has a description', '2009-07-17 10:19:43') + SQL (4.1ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.6ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-d-item-08', 'feed-d', 'Feed d, Item 8 has a description', '2009-07-17 10:19:43') + SQL (4.1ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.4ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-e-item-08', 'feed-e', 'Feed e, Item 8 has a description', '2009-07-17 10:19:43') + SQL (4.8ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.4ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-f-item-08', 'feed-f', 'Feed f, Item 8 has a description', '2009-07-17 10:19:43') + SQL (0.5ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.4ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-g-item-08', 'feed-g', 'Feed g, Item 8 has a description', '2009-07-17 10:19:43') + SQL (0.5ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-h-item-08', 'feed-h', 'Feed h, Item 8 has a description', '2009-07-17 10:19:43') + SQL (5.2ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-i-item-08', 'feed-i', 'Feed i, Item 8 has a description', '2009-07-17 10:19:43') + SQL (4.9ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-j-item-08', 'feed-j', 'Feed j, Item 8 has a description', '2009-07-17 10:19:43') + SQL (4.9ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-a-item-09', 'feed-a', 'Feed a, Item 9 has a description', '2009-07-17 10:19:43') + SQL (4.5ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-b-item-09', 'feed-b', 'Feed b, Item 9 has a description', '2009-07-17 10:19:43') + SQL (4.8ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.6ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-c-item-09', 'feed-c', 'Feed c, Item 9 has a description', '2009-07-17 10:19:43') + SQL (4.7ms) COMMIT + SQL (0.4ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-d-item-09', 'feed-d', 'Feed d, Item 9 has a description', '2009-07-17 10:19:43') + SQL (4.5ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-e-item-09', 'feed-e', 'Feed e, Item 9 has a description', '2009-07-17 10:19:43') + SQL (4.9ms) COMMIT + SQL (0.5ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-f-item-09', 'feed-f', 'Feed f, Item 9 has a description', '2009-07-17 10:19:43') + SQL (4.2ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-g-item-09', 'feed-g', 'Feed g, Item 9 has a description', '2009-07-17 10:19:43') + SQL (5.1ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-h-item-09', 'feed-h', 'Feed h, Item 9 has a description', '2009-07-17 10:19:43') + SQL (4.3ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-i-item-09', 'feed-i', 'Feed i, Item 9 has a description', '2009-07-17 10:19:43') + SQL (4.9ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-j-item-09', 'feed-j', 'Feed j, Item 9 has a description', '2009-07-17 10:19:43') + SQL (4.8ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.4ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-a-item-10', 'feed-a', 'Feed a, Item 10 has a description', '2009-07-17 10:19:43') + SQL (4.7ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-b-item-10', 'feed-b', 'Feed b, Item 10 has a description', '2009-07-17 10:19:43') + SQL (4.9ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-c-item-10', 'feed-c', 'Feed c, Item 10 has a description', '2009-07-17 10:19:43') + SQL (3.2ms) COMMIT + SQL (0.2ms) BEGIN + FeedItem Create (0.4ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-d-item-10', 'feed-d', 'Feed d, Item 10 has a description', '2009-07-17 10:19:43') + SQL (4.8ms) COMMIT + SQL (0.3ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-e-item-10', 'feed-e', 'Feed e, Item 10 has a description', '2009-07-17 10:19:43') + SQL (4.3ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-f-item-10', 'feed-f', 'Feed f, Item 10 has a description', '2009-07-17 10:19:43') + SQL (4.9ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-g-item-10', 'feed-g', 'Feed g, Item 10 has a description', '2009-07-17 10:19:43') + SQL (4.8ms) COMMIT + SQL (0.2ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-h-item-10', 'feed-h', 'Feed h, Item 10 has a description', '2009-07-17 10:19:43') + SQL (4.4ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-i-item-10', 'feed-i', 'Feed i, Item 10 has a description', '2009-07-17 10:19:43') + SQL (4.9ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-j-item-10', 'feed-j', 'Feed j, Item 10 has a description', '2009-07-17 10:19:43') + SQL (4.5ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-a-item-11', 'feed-a', 'Feed a, Item 11 has a description', '2009-07-17 10:19:43') + SQL (4.8ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.4ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-b-item-11', 'feed-b', 'Feed b, Item 11 has a description', '2009-07-17 10:19:43') + SQL (4.8ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-c-item-11', 'feed-c', 'Feed c, Item 11 has a description', '2009-07-17 10:19:43') + SQL (4.8ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-d-item-11', 'feed-d', 'Feed d, Item 11 has a description', '2009-07-17 10:19:43') + SQL (4.9ms) COMMIT + SQL (0.2ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-e-item-11', 'feed-e', 'Feed e, Item 11 has a description', '2009-07-17 10:19:43') + SQL (4.7ms) COMMIT + SQL (0.2ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-f-item-11', 'feed-f', 'Feed f, Item 11 has a description', '2009-07-17 10:19:43') + SQL (4.1ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.6ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-g-item-11', 'feed-g', 'Feed g, Item 11 has a description', '2009-07-17 10:19:43') + SQL (4.5ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-h-item-11', 'feed-h', 'Feed h, Item 11 has a description', '2009-07-17 10:19:43') + SQL (5.0ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-i-item-11', 'feed-i', 'Feed i, Item 11 has a description', '2009-07-17 10:19:43') + SQL (4.8ms) COMMIT + SQL (0.3ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-j-item-11', 'feed-j', 'Feed j, Item 11 has a description', '2009-07-17 10:19:43') + SQL (4.1ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.5ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-a-item-12', 'feed-a', 'Feed a, Item 12 has a description', '2009-07-17 10:19:43') + SQL (4.4ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-b-item-12', 'feed-b', 'Feed b, Item 12 has a description', '2009-07-17 10:19:43') + SQL (4.8ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.4ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-c-item-12', 'feed-c', 'Feed c, Item 12 has a description', '2009-07-17 10:19:43') + SQL (4.8ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-d-item-12', 'feed-d', 'Feed d, Item 12 has a description', '2009-07-17 10:19:43') + SQL (4.9ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-e-item-12', 'feed-e', 'Feed e, Item 12 has a description', '2009-07-17 10:19:43') + SQL (4.8ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-f-item-12', 'feed-f', 'Feed f, Item 12 has a description', '2009-07-17 10:19:43') + SQL (4.9ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-g-item-12', 'feed-g', 'Feed g, Item 12 has a description', '2009-07-17 10:19:43') + SQL (4.2ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-h-item-12', 'feed-h', 'Feed h, Item 12 has a description', '2009-07-17 10:19:43') + SQL (4.3ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-i-item-12', 'feed-i', 'Feed i, Item 12 has a description', '2009-07-17 10:19:43') + SQL (4.7ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-j-item-12', 'feed-j', 'Feed j, Item 12 has a description', '2009-07-17 10:19:43') + SQL (4.9ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-a-item-13', 'feed-a', 'Feed a, Item 13 has a description', '2009-07-17 10:19:43') + SQL (4.9ms) COMMIT + SQL (0.2ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-b-item-13', 'feed-b', 'Feed b, Item 13 has a description', '2009-07-17 10:19:43') + SQL (4.3ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-c-item-13', 'feed-c', 'Feed c, Item 13 has a description', '2009-07-17 10:19:43') + SQL (4.9ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-d-item-13', 'feed-d', 'Feed d, Item 13 has a description', '2009-07-17 10:19:43') + SQL (4.9ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-e-item-13', 'feed-e', 'Feed e, Item 13 has a description', '2009-07-17 10:19:43') + SQL (5.0ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.4ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-f-item-13', 'feed-f', 'Feed f, Item 13 has a description', '2009-07-17 10:19:43') + SQL (4.8ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-g-item-13', 'feed-g', 'Feed g, Item 13 has a description', '2009-07-17 10:19:43') + SQL (4.9ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-h-item-13', 'feed-h', 'Feed h, Item 13 has a description', '2009-07-17 10:19:43') + SQL (4.9ms) COMMIT + SQL (0.2ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-i-item-13', 'feed-i', 'Feed i, Item 13 has a description', '2009-07-17 10:19:43') + SQL (4.2ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-j-item-13', 'feed-j', 'Feed j, Item 13 has a description', '2009-07-17 10:19:43') + SQL (4.8ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-a-item-14', 'feed-a', 'Feed a, Item 14 has a description', '2009-07-17 10:19:43') + SQL (4.8ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.4ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-b-item-14', 'feed-b', 'Feed b, Item 14 has a description', '2009-07-17 10:19:43') + SQL (4.8ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.7ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-c-item-14', 'feed-c', 'Feed c, Item 14 has a description', '2009-07-17 10:19:43') + SQL (4.5ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-d-item-14', 'feed-d', 'Feed d, Item 14 has a description', '2009-07-17 10:19:43') + SQL (4.3ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-e-item-14', 'feed-e', 'Feed e, Item 14 has a description', '2009-07-17 10:19:43') + SQL (4.6ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-f-item-14', 'feed-f', 'Feed f, Item 14 has a description', '2009-07-17 10:19:43') + SQL (4.8ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-g-item-14', 'feed-g', 'Feed g, Item 14 has a description', '2009-07-17 10:19:43') + SQL (5.0ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-h-item-14', 'feed-h', 'Feed h, Item 14 has a description', '2009-07-17 10:19:43') + SQL (4.8ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-i-item-14', 'feed-i', 'Feed i, Item 14 has a description', '2009-07-17 10:19:43') + SQL (4.8ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-j-item-14', 'feed-j', 'Feed j, Item 14 has a description', '2009-07-17 10:19:43') + SQL (4.9ms) COMMIT + SQL (0.2ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-a-item-15', 'feed-a', 'Feed a, Item 15 has a description', '2009-07-17 10:19:43') + SQL (4.3ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-b-item-15', 'feed-b', 'Feed b, Item 15 has a description', '2009-07-17 10:19:43') + SQL (4.7ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-c-item-15', 'feed-c', 'Feed c, Item 15 has a description', '2009-07-17 10:19:43') + SQL (4.8ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-d-item-15', 'feed-d', 'Feed d, Item 15 has a description', '2009-07-17 10:19:43') + SQL (5.0ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-e-item-15', 'feed-e', 'Feed e, Item 15 has a description', '2009-07-17 10:19:43') + SQL (4.8ms) COMMIT + SQL (0.2ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-f-item-15', 'feed-f', 'Feed f, Item 15 has a description', '2009-07-17 10:19:43') + SQL (4.2ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-g-item-15', 'feed-g', 'Feed g, Item 15 has a description', '2009-07-17 10:19:43') + SQL (4.8ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-h-item-15', 'feed-h', 'Feed h, Item 15 has a description', '2009-07-17 10:19:43') + SQL (4.9ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.4ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-i-item-15', 'feed-i', 'Feed i, Item 15 has a description', '2009-07-17 10:19:43') + SQL (4.5ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-j-item-15', 'feed-j', 'Feed j, Item 15 has a description', '2009-07-17 10:19:43') + SQL (4.9ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-a-item-16', 'feed-a', 'Feed a, Item 16 has a description', '2009-07-17 10:19:43') + SQL (4.8ms) COMMIT + SQL (0.2ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-b-item-16', 'feed-b', 'Feed b, Item 16 has a description', '2009-07-17 10:19:43') + SQL (4.8ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-c-item-16', 'feed-c', 'Feed c, Item 16 has a description', '2009-07-17 10:19:43') + SQL (4.5ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-d-item-16', 'feed-d', 'Feed d, Item 16 has a description', '2009-07-17 10:19:43') + SQL (4.9ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-e-item-16', 'feed-e', 'Feed e, Item 16 has a description', '2009-07-17 10:19:43') + SQL (4.8ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-f-item-16', 'feed-f', 'Feed f, Item 16 has a description', '2009-07-17 10:19:43') + SQL (4.9ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-g-item-16', 'feed-g', 'Feed g, Item 16 has a description', '2009-07-17 10:19:43') + SQL (4.7ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-h-item-16', 'feed-h', 'Feed h, Item 16 has a description', '2009-07-17 10:19:43') + SQL (4.0ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-i-item-16', 'feed-i', 'Feed i, Item 16 has a description', '2009-07-17 10:19:43') + SQL (4.6ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:43', 'feed-j-item-16', 'feed-j', 'Feed j, Item 16 has a description', '2009-07-17 10:19:43') + SQL (4.9ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (1.1ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:44', 'feed-a-item-17', 'feed-a', 'Feed a, Item 17 has a description', '2009-07-17 10:19:44') + SQL (4.2ms) COMMIT + SQL (0.2ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:44', 'feed-b-item-17', 'feed-b', 'Feed b, Item 17 has a description', '2009-07-17 10:19:44') + SQL (4.1ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:44', 'feed-c-item-17', 'feed-c', 'Feed c, Item 17 has a description', '2009-07-17 10:19:44') + SQL (0.5ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:44', 'feed-d-item-17', 'feed-d', 'Feed d, Item 17 has a description', '2009-07-17 10:19:44') + SQL (0.5ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:44', 'feed-e-item-17', 'feed-e', 'Feed e, Item 17 has a description', '2009-07-17 10:19:44') + SQL (4.8ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:44', 'feed-f-item-17', 'feed-f', 'Feed f, Item 17 has a description', '2009-07-17 10:19:44') + SQL (4.7ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:44', 'feed-g-item-17', 'feed-g', 'Feed g, Item 17 has a description', '2009-07-17 10:19:44') + SQL (4.7ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:44', 'feed-h-item-17', 'feed-h', 'Feed h, Item 17 has a description', '2009-07-17 10:19:44') + SQL (4.8ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:44', 'feed-i-item-17', 'feed-i', 'Feed i, Item 17 has a description', '2009-07-17 10:19:44') + SQL (4.9ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:44', 'feed-j-item-17', 'feed-j', 'Feed j, Item 17 has a description', '2009-07-17 10:19:44') + SQL (4.7ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:44', 'feed-a-item-18', 'feed-a', 'Feed a, Item 18 has a description', '2009-07-17 10:19:44') + SQL (3.9ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:44', 'feed-b-item-18', 'feed-b', 'Feed b, Item 18 has a description', '2009-07-17 10:19:44') + SQL (4.8ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:44', 'feed-c-item-18', 'feed-c', 'Feed c, Item 18 has a description', '2009-07-17 10:19:44') + SQL (4.6ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:44', 'feed-d-item-18', 'feed-d', 'Feed d, Item 18 has a description', '2009-07-17 10:19:44') + SQL (4.9ms) COMMIT + SQL (0.2ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:44', 'feed-e-item-18', 'feed-e', 'Feed e, Item 18 has a description', '2009-07-17 10:19:44') + SQL (4.7ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:44', 'feed-f-item-18', 'feed-f', 'Feed f, Item 18 has a description', '2009-07-17 10:19:44') + SQL (4.7ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:44', 'feed-g-item-18', 'feed-g', 'Feed g, Item 18 has a description', '2009-07-17 10:19:44') + SQL (5.0ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.4ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:44', 'feed-h-item-18', 'feed-h', 'Feed h, Item 18 has a description', '2009-07-17 10:19:44') + SQL (2.3ms) COMMIT + SQL (2.9ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:44', 'feed-i-item-18', 'feed-i', 'Feed i, Item 18 has a description', '2009-07-17 10:19:44') + SQL (0.8ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:44', 'feed-j-item-18', 'feed-j', 'Feed j, Item 18 has a description', '2009-07-17 10:19:44') + SQL (0.5ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:44', 'feed-a-item-19', 'feed-a', 'Feed a, Item 19 has a description', '2009-07-17 10:19:44') + SQL (7.8ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:44', 'feed-b-item-19', 'feed-b', 'Feed b, Item 19 has a description', '2009-07-17 10:19:44') + SQL (4.7ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:44', 'feed-c-item-19', 'feed-c', 'Feed c, Item 19 has a description', '2009-07-17 10:19:44') + SQL (4.2ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:44', 'feed-d-item-19', 'feed-d', 'Feed d, Item 19 has a description', '2009-07-17 10:19:44') + SQL (4.8ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:44', 'feed-e-item-19', 'feed-e', 'Feed e, Item 19 has a description', '2009-07-17 10:19:44') + SQL (4.3ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:44', 'feed-f-item-19', 'feed-f', 'Feed f, Item 19 has a description', '2009-07-17 10:19:44') + SQL (4.7ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:44', 'feed-g-item-19', 'feed-g', 'Feed g, Item 19 has a description', '2009-07-17 10:19:44') + SQL (4.7ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:44', 'feed-h-item-19', 'feed-h', 'Feed h, Item 19 has a description', '2009-07-17 10:19:44') + SQL (4.8ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:44', 'feed-i-item-19', 'feed-i', 'Feed i, Item 19 has a description', '2009-07-17 10:19:44') + SQL (4.9ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.7ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:44', 'feed-j-item-19', 'feed-j', 'Feed j, Item 19 has a description', '2009-07-17 10:19:44') + SQL (4.2ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:44', 'feed-a-item-20', 'feed-a', 'Feed a, Item 20 has a description', '2009-07-17 10:19:44') + SQL (4.8ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:44', 'feed-b-item-20', 'feed-b', 'Feed b, Item 20 has a description', '2009-07-17 10:19:44') + SQL (4.8ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.4ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:44', 'feed-c-item-20', 'feed-c', 'Feed c, Item 20 has a description', '2009-07-17 10:19:44') + SQL (4.7ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:44', 'feed-d-item-20', 'feed-d', 'Feed d, Item 20 has a description', '2009-07-17 10:19:44') + SQL (0.7ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:44', 'feed-e-item-20', 'feed-e', 'Feed e, Item 20 has a description', '2009-07-17 10:19:44') + SQL (1.4ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:44', 'feed-f-item-20', 'feed-f', 'Feed f, Item 20 has a description', '2009-07-17 10:19:44') + SQL (4.8ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:44', 'feed-g-item-20', 'feed-g', 'Feed g, Item 20 has a description', '2009-07-17 10:19:44') + SQL (4.7ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:44', 'feed-h-item-20', 'feed-h', 'Feed h, Item 20 has a description', '2009-07-17 10:19:44') + SQL (4.8ms) COMMIT + SQL (0.1ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:44', 'feed-i-item-20', 'feed-i', 'Feed i, Item 20 has a description', '2009-07-17 10:19:44') + SQL (3.9ms) COMMIT + SQL (0.2ms) BEGIN + FeedItem Create (0.3ms) INSERT INTO `feed_items` (`updated_at`, `title`, `feed_name`, `description`, `created_at`) VALUES('2009-07-17 10:19:44', 'feed-j-item-20', 'feed-j', 'Feed j, Item 20 has a description', '2009-07-17 10:19:44') + SQL (3.1ms) COMMIT + SQL (7.9ms) INSERT INTO schema_migrations (version) VALUES ('20090717095948') + SQL (0.4ms) SHOW TABLES + SQL (0.3ms) SELECT version FROM schema_migrations + SQL (0.3ms) SHOW TABLES + SQL (1.0ms) SHOW FIELDS FROM `feed_items` + SQL (1.2ms) describe `feed_items` + SQL (0.8ms) SHOW KEYS FROM `feed_items` + SQL (0.2ms) SET NAMES 'utf8' + SQL (0.1ms) SET SQL_AUTO_IS_NULL=0 + + +Processing FeedController#index (for 127.0.0.1 at 2009-07-17 11:53:48) [GET] + +NameError (undefined local variable or method `all' for #): + app/controllers/feed_controller.rb:3:in `index' + /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' + /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' + /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' + /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' + /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' + /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' + /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' + /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' + /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' + /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' + +Rendered rescues/_trace (75.2ms) +Rendered rescues/_request_and_response (17.1ms) +Rendering rescues/layout (internal_server_error) + SQL (0.4ms) SET NAMES 'utf8' + SQL (0.1ms) SET SQL_AUTO_IS_NULL=0 + + +Processing FeedController#index (for 127.0.0.1 at 2009-07-17 11:54:04) [GET] + FeedItem Load (0.7ms) SELECT DISTINCT feed_name FROM `feed_items`  +Rendering feed/index + FeedItem Columns (1.1ms) SHOW FIELDS FROM `feed_items` +Completed in 28ms (View: 16, DB: 2) | 200 OK [http://localhost/feed/] + SQL (0.1ms) SET NAMES 'utf8' + SQL (0.1ms) SET SQL_AUTO_IS_NULL=0 + + +Processing FeedController#show (for 127.0.0.1 at 2009-07-17 11:54:16) [GET] + Parameters: {"id"=>"feed-a"} + FeedItem Columns (1.0ms) SHOW FIELDS FROM `feed_items` + FeedItem Load (16.8ms) SELECT * FROM `feed_items` WHERE (`feed_items`.`feed_name` IS NULL)  +Rendering feed/show +Completed in 128ms (View: 7, DB: 18) | 200 OK [http://localhost/feed/show/feed-a] + SQL (0.1ms) SET NAMES 'utf8' + SQL (0.1ms) SET SQL_AUTO_IS_NULL=0 + + +Processing FeedController#show (for 127.0.0.1 at 2009-07-17 11:54:24) [GET] + Parameters: {"id"=>"feed-b"} + FeedItem Columns (1.6ms) SHOW FIELDS FROM `feed_items` + FeedItem Load (0.1ms) SELECT * FROM `feed_items` WHERE (`feed_items`.`feed_name` IS NULL)  +Rendering feed/show +Completed in 14ms (View: 1, DB: 2) | 200 OK [http://localhost/feed/show/feed-b] + SQL (0.1ms) SET NAMES 'utf8' + SQL (0.1ms) SET SQL_AUTO_IS_NULL=0 + + +Processing FeedController#feed-b (for 127.0.0.1 at 2009-07-17 11:54:50) [GET] + +ActionController::UnknownAction (No action responded to feed-b. Actions: index, show, and update): + /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service' + /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run' + /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread' + /usr/lib/ruby/1.8/webrick/server.rb:162:in `start' + /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread' + /usr/lib/ruby/1.8/webrick/server.rb:95:in `start' + /usr/lib/ruby/1.8/webrick/server.rb:92:in `each' + /usr/lib/ruby/1.8/webrick/server.rb:92:in `start' + /usr/lib/ruby/1.8/webrick/server.rb:23:in `start' + /usr/lib/ruby/1.8/webrick/server.rb:82:in `start' + +Rendering rescues/layout (not_found) + SQL (0.1ms) SET NAMES 'utf8' + SQL (0.1ms) SET SQL_AUTO_IS_NULL=0 + + +Processing FeedController#show (for 127.0.0.1 at 2009-07-17 11:54:58) [GET] + Parameters: {"id"=>"feed-b"} + FeedItem Columns (1.1ms) SHOW FIELDS FROM `feed_items` + FeedItem Load (0.1ms) SELECT * FROM `feed_items` WHERE (`feed_items`.`feed_name` IS NULL)  +Rendering feed/show +Completed in 14ms (View: 1, DB: 1) | 200 OK [http://localhost/feed/show/feed-b] + SQL (0.1ms) SET NAMES 'utf8' + SQL (0.1ms) SET SQL_AUTO_IS_NULL=0 + + +Processing FeedController#show (for 127.0.0.1 at 2009-07-17 11:55:30) [GET] + Parameters: {"id"=>"feed-b"} + FeedItem Columns (1.0ms) SHOW FIELDS FROM `feed_items` + FeedItem Load (0.9ms) SELECT * FROM `feed_items` WHERE (`feed_items`.`feed_name` = 'feed-b')  +Rendering feed/show +Completed in 42ms (View: 4, DB: 2) | 200 OK [http://localhost/feed/show/feed-b] + SQL (0.1ms) SET NAMES 'utf8' + SQL (0.1ms) SET SQL_AUTO_IS_NULL=0 + + +Processing FeedController#show (for 127.0.0.1 at 2009-07-17 11:55:57) [GET] + Parameters: {"id"=>"feed-b"} + FeedItem Columns (1.1ms) SHOW FIELDS FROM `feed_items` + FeedItem Load (0.2ms) SELECT * FROM `feed_items` WHERE (`feed_items`.`feed_name` = 'feed-b')  +Rendering feed/show +Completed in 22ms (View: 9, DB: 1) | 200 OK [http://localhost/feed/show/feed-b] + SQL (0.1ms) SET NAMES 'utf8' + SQL (0.1ms) SET SQL_AUTO_IS_NULL=0 + + +Processing FeedController#show (for 127.0.0.1 at 2009-07-17 11:56:01) [GET] + Parameters: {"id"=>"feed-c"} + FeedItem Columns (1.1ms) SHOW FIELDS FROM `feed_items` + FeedItem Load (0.8ms) SELECT * FROM `feed_items` WHERE (`feed_items`.`feed_name` = 'feed-c')  +Rendering feed/show +Completed in 17ms (View: 4, DB: 2) | 200 OK [http://localhost/feed/show/feed-c] + SQL (0.1ms) SET NAMES 'utf8' + SQL (0.1ms) SET SQL_AUTO_IS_NULL=0 + + +Processing FeedController#show (for 127.0.0.1 at 2009-07-17 11:56:05) [GET] + Parameters: {"id"=>"feed-a"} + FeedItem Columns (1.4ms) SHOW FIELDS FROM `feed_items` + FeedItem Load (0.8ms) SELECT * FROM `feed_items` WHERE (`feed_items`.`feed_name` = 'feed-a')  +Rendering feed/show +Completed in 18ms (View: 3, DB: 2) | 200 OK [http://localhost/feed/show/feed-a] + SQL (0.1ms) SET NAMES 'utf8' + SQL (0.7ms) SET SQL_AUTO_IS_NULL=0 + + +Processing FeedController#index (for 127.0.0.1 at 2009-07-17 11:56:09) [GET] + FeedItem Load (0.2ms) SELECT DISTINCT feed_name FROM `feed_items`  +Rendering feed/index + FeedItem Columns (1.0ms) SHOW FIELDS FROM `feed_items` +Completed in 15ms (View: 5, DB: 2) | 200 OK [http://localhost/feed/] + SQL (0.1ms) SET NAMES 'utf8' + SQL (0.2ms) SET SQL_AUTO_IS_NULL=0 + + +Processing FeedController#index (for 127.0.0.1 at 2009-07-17 11:56:32) [GET] + FeedItem Load (0.2ms) SELECT DISTINCT feed_name FROM `feed_items`  +Rendering feed/index + FeedItem Columns (1.1ms) SHOW FIELDS FROM `feed_items` +Completed in 21ms (View: 9, DB: 1) | 200 OK [http://localhost/feed/] + SQL (0.1ms) SET NAMES 'utf8' + SQL (0.2ms) SET SQL_AUTO_IS_NULL=0 + + +Processing FeedController#show (for 127.0.0.1 at 2009-07-17 11:56:37) [GET] + Parameters: {"id"=>"feed-a"} + FeedItem Columns (1.0ms) SHOW FIELDS FROM `feed_items` + FeedItem Load (0.2ms) SELECT * FROM `feed_items` WHERE (`feed_items`.`feed_name` = 'feed-a')  +Rendering feed/show +Completed in 22ms (View: 9, DB: 2) | 200 OK [http://localhost/feed/show/feed-a] + SQL (0.1ms) SET NAMES 'utf8' + SQL (0.1ms) SET SQL_AUTO_IS_NULL=0 + + +Processing FeedController#show (for 127.0.0.1 at 2009-07-17 11:57:08) [GET] + Parameters: {"id"=>"feed-a"} + FeedItem Columns (1.0ms) SHOW FIELDS FROM `feed_items` + FeedItem Load (0.2ms) SELECT * FROM `feed_items` WHERE (`feed_items`.`feed_name` = 'feed-a')  +Rendering feed/show +Completed in 22ms (View: 9, DB: 1) | 200 OK [http://localhost/feed/show/feed-a] diff --git a/log/production.log b/log/production.log new file mode 100644 index 0000000..e69de29 diff --git a/log/server.log b/log/server.log new file mode 100644 index 0000000..e69de29 diff --git a/log/test.log b/log/test.log new file mode 100644 index 0000000..e69de29 diff --git a/test/fixtures/feed_items.yml b/test/fixtures/feed_items.yml new file mode 100644 index 0000000..480ee1f --- /dev/null +++ b/test/fixtures/feed_items.yml @@ -0,0 +1,11 @@ +# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html + +one: + feed_name: MyString + title: MyString + description: MyText + +two: + feed_name: MyString + title: MyString + description: MyText diff --git a/test/functional/feed_controller_test.rb b/test/functional/feed_controller_test.rb new file mode 100644 index 0000000..b63fd91 --- /dev/null +++ b/test/functional/feed_controller_test.rb @@ -0,0 +1,8 @@ +require 'test_helper' + +class FeedControllerTest < ActionController::TestCase + # Replace this with your real tests. + test "the truth" do + assert true + end +end diff --git a/test/unit/feed_item_test.rb b/test/unit/feed_item_test.rb new file mode 100644 index 0000000..2078dc3 --- /dev/null +++ b/test/unit/feed_item_test.rb @@ -0,0 +1,8 @@ +require 'test_helper' + +class FeedItemTest < ActiveSupport::TestCase + # Replace this with your real tests. + test "the truth" do + assert true + end +end diff --git a/test/unit/helpers/feed_helper_test.rb b/test/unit/helpers/feed_helper_test.rb new file mode 100644 index 0000000..db262f4 --- /dev/null +++ b/test/unit/helpers/feed_helper_test.rb @@ -0,0 +1,4 @@ +require 'test_helper' + +class FeedHelperTest < ActionView::TestCase +end -- 2.34.1