fancygrid 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (97) hide show
  1. data/.bundle/config +2 -0
  2. data/.rspec +1 -0
  3. data/CHANGELOG +34 -0
  4. data/Gemfile +15 -0
  5. data/Gemfile.lock +125 -0
  6. data/LICENSE +20 -0
  7. data/README.rdoc +299 -0
  8. data/ROADMAP +1 -0
  9. data/Rakefile +45 -0
  10. data/VERSION +1 -0
  11. data/app/views/fancygrid/_cells.html.haml +13 -0
  12. data/app/views/fancygrid/base/controls.html.haml +40 -0
  13. data/app/views/fancygrid/base/list_frame.html.haml +37 -0
  14. data/app/views/fancygrid/base/search.html.haml +33 -0
  15. data/app/views/fancygrid/base/sort.html.haml +20 -0
  16. data/app/views/fancygrid/base/table_frame.html.haml +45 -0
  17. data/config/initializers/fancygrid.rb +67 -0
  18. data/config/locales/fancygrid.de.yml +41 -0
  19. data/config/locales/fancygrid.en.yml +42 -0
  20. data/fancygrid.gemspec +162 -0
  21. data/init.rb +1 -0
  22. data/lib/fancygrid.rb +73 -0
  23. data/lib/fancygrid/grid.rb +387 -0
  24. data/lib/fancygrid/helper.rb +129 -0
  25. data/lib/fancygrid/node.rb +533 -0
  26. data/lib/fancygrid/query_generator.rb +338 -0
  27. data/lib/fancygrid/view.rb +148 -0
  28. data/lib/generators/install_generator.rb +61 -0
  29. data/lib/generators/views_generator.rb +25 -0
  30. data/lib/version.rb +0 -0
  31. data/public/images/fancygrid/add.png +0 -0
  32. data/public/images/fancygrid/clear.png +0 -0
  33. data/public/images/fancygrid/ddn.png +0 -0
  34. data/public/images/fancygrid/dn.png +0 -0
  35. data/public/images/fancygrid/dots.png +0 -0
  36. data/public/images/fancygrid/loading.gif +0 -0
  37. data/public/images/fancygrid/magnifier.png +0 -0
  38. data/public/images/fancygrid/next.png +0 -0
  39. data/public/images/fancygrid/order.png +0 -0
  40. data/public/images/fancygrid/prev.png +0 -0
  41. data/public/images/fancygrid/reload.png +0 -0
  42. data/public/images/fancygrid/remove.png +0 -0
  43. data/public/images/fancygrid/spacer.gif +0 -0
  44. data/public/images/fancygrid/submit.png +0 -0
  45. data/public/images/fancygrid/th_bg.png +0 -0
  46. data/public/images/fancygrid/up.png +0 -0
  47. data/public/images/fancygrid/uup.png +0 -0
  48. data/public/javascripts/fancygrid.js +477 -0
  49. data/public/javascripts/fancygrid.min.js +17 -0
  50. data/public/stylesheets/fancygrid.css +289 -0
  51. data/public/stylesheets/fancygrid.scss +302 -0
  52. data/spec/dummy/Rakefile +7 -0
  53. data/spec/dummy/app/controllers/application_controller.rb +3 -0
  54. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  55. data/spec/dummy/app/models/project.rb +3 -0
  56. data/spec/dummy/app/models/ticket.rb +3 -0
  57. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  58. data/spec/dummy/config.ru +4 -0
  59. data/spec/dummy/config/application.rb +45 -0
  60. data/spec/dummy/config/boot.rb +10 -0
  61. data/spec/dummy/config/database.yml +22 -0
  62. data/spec/dummy/config/environment.rb +5 -0
  63. data/spec/dummy/config/environments/development.rb +26 -0
  64. data/spec/dummy/config/environments/production.rb +49 -0
  65. data/spec/dummy/config/environments/test.rb +35 -0
  66. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  67. data/spec/dummy/config/initializers/inflections.rb +10 -0
  68. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  69. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  70. data/spec/dummy/config/initializers/session_store.rb +8 -0
  71. data/spec/dummy/config/locales/en.yml +5 -0
  72. data/spec/dummy/config/routes.rb +58 -0
  73. data/spec/dummy/db/migrate/20110112183948_create_projects.rb +11 -0
  74. data/spec/dummy/db/migrate/20110112183956_create_tickets.rb +14 -0
  75. data/spec/dummy/db/test.sqlite3 +0 -0
  76. data/spec/dummy/log/development.log +0 -0
  77. data/spec/dummy/log/production.log +0 -0
  78. data/spec/dummy/log/server.log +0 -0
  79. data/spec/dummy/log/test.log +1026 -0
  80. data/spec/dummy/public/404.html +26 -0
  81. data/spec/dummy/public/422.html +26 -0
  82. data/spec/dummy/public/500.html +26 -0
  83. data/spec/dummy/public/favicon.ico +0 -0
  84. data/spec/dummy/public/javascripts/application.js +2 -0
  85. data/spec/dummy/public/javascripts/controls.js +965 -0
  86. data/spec/dummy/public/javascripts/dragdrop.js +974 -0
  87. data/spec/dummy/public/javascripts/effects.js +1123 -0
  88. data/spec/dummy/public/javascripts/prototype.js +6001 -0
  89. data/spec/dummy/public/javascripts/rails.js +175 -0
  90. data/spec/dummy/public/stylesheets/.gitkeep +0 -0
  91. data/spec/dummy/script/rails +6 -0
  92. data/spec/grid_spec.rb +15 -0
  93. data/spec/integration/navigation_spec.rb +9 -0
  94. data/spec/node_spec.rb +326 -0
  95. data/spec/query_generator_spec.rb +358 -0
  96. data/spec/spec_helper.rb +53 -0
  97. metadata +214 -0
@@ -0,0 +1,7 @@
1
+ # Add your own tasks in files placed in lib/tasks ending in .rake,
2
+ # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3
+
4
+ require File.expand_path('../config/application', __FILE__)
5
+ require 'rake'
6
+
7
+ Dummy::Application.load_tasks
@@ -0,0 +1,3 @@
1
+ class ApplicationController < ActionController::Base
2
+ protect_from_forgery
3
+ end
@@ -0,0 +1,2 @@
1
+ module ApplicationHelper
2
+ end
@@ -0,0 +1,3 @@
1
+ class Project < ActiveRecord::Base
2
+ has_many :tickets
3
+ end
@@ -0,0 +1,3 @@
1
+ class Ticket < ActiveRecord::Base
2
+ belongs_to :project
3
+ end
@@ -0,0 +1,14 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Dummy</title>
5
+ <%= stylesheet_link_tag :all %>
6
+ <%= javascript_include_tag :defaults %>
7
+ <%= csrf_meta_tag %>
8
+ </head>
9
+ <body>
10
+
11
+ <%= yield %>
12
+
13
+ </body>
14
+ </html>
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Dummy::Application
@@ -0,0 +1,45 @@
1
+ require File.expand_path('../boot', __FILE__)
2
+
3
+ require "active_model/railtie"
4
+ require "active_record/railtie"
5
+ require "action_controller/railtie"
6
+ require "action_view/railtie"
7
+ require "action_mailer/railtie"
8
+
9
+ Bundler.require
10
+ require "fancygrid"
11
+
12
+ module Dummy
13
+ class Application < Rails::Application
14
+ # Settings in config/environments/* take precedence over those specified here.
15
+ # Application configuration should go into files in config/initializers
16
+ # -- all .rb files in that directory are automatically loaded.
17
+
18
+ # Custom directories with classes and modules you want to be autoloadable.
19
+ # config.autoload_paths += %W(#{config.root}/extras)
20
+
21
+ # Only load the plugins named here, in the order given (default is alphabetical).
22
+ # :all can be used as a placeholder for all plugins not explicitly named.
23
+ # config.plugins = [ :exception_notification, :ssl_requirement, :all ]
24
+
25
+ # Activate observers that should always be running.
26
+ # config.active_record.observers = :cacher, :garbage_collector, :forum_observer
27
+
28
+ # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
29
+ # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
30
+ # config.time_zone = 'Central Time (US & Canada)'
31
+
32
+ # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
33
+ # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
34
+ # config.i18n.default_locale = :de
35
+
36
+ # JavaScript files you want as :defaults (application.js is always included).
37
+ # config.action_view.javascript_expansions[:defaults] = %w(jquery rails)
38
+
39
+ # Configure the default encoding used in templates for Ruby 1.9.
40
+ config.encoding = "utf-8"
41
+
42
+ # Configure sensitive parameters which will be filtered from the log file.
43
+ config.filter_parameters += [:password]
44
+ end
45
+ end
@@ -0,0 +1,10 @@
1
+ require 'rubygems'
2
+ gemfile = File.expand_path('../../../../Gemfile', __FILE__)
3
+
4
+ if File.exist?(gemfile)
5
+ ENV['BUNDLE_GEMFILE'] = gemfile
6
+ require 'bundler'
7
+ Bundler.setup
8
+ end
9
+
10
+ $:.unshift File.expand_path('../../../../lib', __FILE__)
@@ -0,0 +1,22 @@
1
+ # SQLite version 3.x
2
+ # gem install sqlite3-ruby (not necessary on OS X Leopard)
3
+ development:
4
+ adapter: sqlite3
5
+ database: db/development.sqlite3
6
+ pool: 5
7
+ timeout: 5000
8
+
9
+ # Warning: The database defined as "test" will be erased and
10
+ # re-generated from your development database when you run "rake".
11
+ # Do not set this db to the same as development or production.
12
+ test:
13
+ adapter: sqlite3
14
+ database: db/test.sqlite3
15
+ pool: 5
16
+ timeout: 5000
17
+
18
+ production:
19
+ adapter: sqlite3
20
+ database: db/production.sqlite3
21
+ pool: 5
22
+ timeout: 5000
@@ -0,0 +1,5 @@
1
+ # Load the rails application
2
+ require File.expand_path('../application', __FILE__)
3
+
4
+ # Initialize the rails application
5
+ Dummy::Application.initialize!
@@ -0,0 +1,26 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # In the development environment your application's code is reloaded on
5
+ # every request. This slows down response time but is perfect for development
6
+ # since you don't have to restart the webserver when you make code changes.
7
+ config.cache_classes = false
8
+
9
+ # Log error messages when you accidentally call methods on nil.
10
+ config.whiny_nils = true
11
+
12
+ # Show full error reports and disable caching
13
+ config.consider_all_requests_local = true
14
+ config.action_view.debug_rjs = true
15
+ config.action_controller.perform_caching = false
16
+
17
+ # Don't care if the mailer can't send
18
+ config.action_mailer.raise_delivery_errors = false
19
+
20
+ # Print deprecation notices to the Rails logger
21
+ config.active_support.deprecation = :log
22
+
23
+ # Only use best-standards-support built into browsers
24
+ config.action_dispatch.best_standards_support = :builtin
25
+ end
26
+
@@ -0,0 +1,49 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # The production environment is meant for finished, "live" apps.
5
+ # Code is not reloaded between requests
6
+ config.cache_classes = true
7
+
8
+ # Full error reports are disabled and caching is turned on
9
+ config.consider_all_requests_local = false
10
+ config.action_controller.perform_caching = true
11
+
12
+ # Specifies the header that your server uses for sending files
13
+ config.action_dispatch.x_sendfile_header = "X-Sendfile"
14
+
15
+ # For nginx:
16
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect'
17
+
18
+ # If you have no front-end server that supports something like X-Sendfile,
19
+ # just comment this out and Rails will serve the files
20
+
21
+ # See everything in the log (default is :info)
22
+ # config.log_level = :debug
23
+
24
+ # Use a different logger for distributed setups
25
+ # config.logger = SyslogLogger.new
26
+
27
+ # Use a different cache store in production
28
+ # config.cache_store = :mem_cache_store
29
+
30
+ # Disable Rails's static asset server
31
+ # In production, Apache or nginx will already do this
32
+ config.serve_static_assets = false
33
+
34
+ # Enable serving of images, stylesheets, and javascripts from an asset server
35
+ # config.action_controller.asset_host = "http://assets.example.com"
36
+
37
+ # Disable delivery errors, bad email addresses will be ignored
38
+ # config.action_mailer.raise_delivery_errors = false
39
+
40
+ # Enable threaded mode
41
+ # config.threadsafe!
42
+
43
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
44
+ # the I18n.default_locale when a translation can not be found)
45
+ config.i18n.fallbacks = true
46
+
47
+ # Send deprecation notices to registered listeners
48
+ config.active_support.deprecation = :notify
49
+ end
@@ -0,0 +1,35 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
9
+
10
+ # Log error messages when you accidentally call methods on nil.
11
+ config.whiny_nils = true
12
+
13
+ # Show full error reports and disable caching
14
+ config.consider_all_requests_local = true
15
+ config.action_controller.perform_caching = false
16
+
17
+ # Raise exceptions instead of rendering exception templates
18
+ config.action_dispatch.show_exceptions = false
19
+
20
+ # Disable request forgery protection in test environment
21
+ config.action_controller.allow_forgery_protection = false
22
+
23
+ # Tell Action Mailer not to deliver emails to the real world.
24
+ # The :test delivery method accumulates sent emails in the
25
+ # ActionMailer::Base.deliveries array.
26
+ config.action_mailer.delivery_method = :test
27
+
28
+ # Use SQL instead of Active Record's schema dumper when creating the test database.
29
+ # This is necessary if your schema can't be completely dumped by the schema dumper,
30
+ # like if you have constraints or database-specific column types
31
+ # config.active_record.schema_format = :sql
32
+
33
+ # Print deprecation notices to the stderr
34
+ config.active_support.deprecation = :stderr
35
+ end
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,10 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format
4
+ # (all these examples are active by default):
5
+ # ActiveSupport::Inflector.inflections do |inflect|
6
+ # inflect.plural /^(ox)$/i, '\1en'
7
+ # inflect.singular /^(ox)en/i, '\1'
8
+ # inflect.irregular 'person', 'people'
9
+ # inflect.uncountable %w( fish sheep )
10
+ # end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+ # Make sure the secret is at least 30 characters and all random,
6
+ # no regular words or you'll be exposed to dictionary attacks.
7
+ Dummy::Application.config.secret_token = 'ef3ef73788a06a3f2456739a6397f0a5088380c579532890d2ad815a450e9847f9ef40ac87a955b12cbc1d80cc5ef3d55238f5a216ecbeabca857e0cdf4df7cd'
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::Application.config.session_store :cookie_store, :key => '_dummy_session'
4
+
5
+ # Use the database for sessions instead of the cookie-based default,
6
+ # which shouldn't be used to store highly confidential information
7
+ # (create the session table with "rails generate session_migration")
8
+ # Dummy::Application.config.session_store :active_record_store
@@ -0,0 +1,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See http://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -0,0 +1,58 @@
1
+ Dummy::Application.routes.draw do
2
+ # The priority is based upon order of creation:
3
+ # first created -> highest priority.
4
+
5
+ # Sample of regular route:
6
+ # match 'products/:id' => 'catalog#view'
7
+ # Keep in mind you can assign values other than :controller and :action
8
+
9
+ # Sample of named route:
10
+ # match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
11
+ # This route can be invoked with purchase_url(:id => product.id)
12
+
13
+ # Sample resource route (maps HTTP verbs to controller actions automatically):
14
+ # resources :products
15
+
16
+ # Sample resource route with options:
17
+ # resources :products do
18
+ # member do
19
+ # get 'short'
20
+ # post 'toggle'
21
+ # end
22
+ #
23
+ # collection do
24
+ # get 'sold'
25
+ # end
26
+ # end
27
+
28
+ # Sample resource route with sub-resources:
29
+ # resources :products do
30
+ # resources :comments, :sales
31
+ # resource :seller
32
+ # end
33
+
34
+ # Sample resource route with more complex sub-resources
35
+ # resources :products do
36
+ # resources :comments
37
+ # resources :sales do
38
+ # get 'recent', :on => :collection
39
+ # end
40
+ # end
41
+
42
+ # Sample resource route within a namespace:
43
+ # namespace :admin do
44
+ # # Directs /admin/products/* to Admin::ProductsController
45
+ # # (app/controllers/admin/products_controller.rb)
46
+ # resources :products
47
+ # end
48
+
49
+ # You can have the root of your site routed with "root"
50
+ # just remember to delete public/index.html.
51
+ # root :to => "welcome#index"
52
+
53
+ # See how all your routes lay out with "rake routes"
54
+
55
+ # This is a legacy wild controller route that's not recommended for RESTful applications.
56
+ # Note: This route will make all actions in every controller accessible via GET requests.
57
+ # match ':controller(/:action(/:id(.:format)))'
58
+ end
@@ -0,0 +1,11 @@
1
+ class CreateProjects < ActiveRecord::Migration
2
+ def self.up
3
+ create_table(:projects) do |t|
4
+ t.string :title
5
+ end
6
+ end
7
+
8
+ def self.down
9
+ drop_table(:projects)
10
+ end
11
+ end
@@ -0,0 +1,14 @@
1
+ class CreateTickets < ActiveRecord::Migration
2
+ def self.up
3
+ create_table(:tickets) do |t|
4
+ t.integer :project_id
5
+ t.string :title
6
+ t.string :description
7
+ t.string :status
8
+ end
9
+ end
10
+
11
+ def self.down
12
+ drop_table(:tickets)
13
+ end
14
+ end
Binary file
File without changes
File without changes
File without changes
@@ -0,0 +1,1026 @@
1
+ SQL (2.0ms)  SELECT name
2
+ FROM sqlite_master
3
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4
+ 
5
+ SQL (0.5ms) select sqlite_version(*)
6
+ SQL (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
7
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
8
+ SQL (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
9
+ SQL (0.3ms) SELECT name
10
+ FROM sqlite_master
11
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
12
+ SQL (0.7ms)  SELECT name
13
+ FROM sqlite_master
14
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
15
+ 
16
+ SQL (0.1ms) SELECT name
17
+ FROM sqlite_master
18
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
19
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
20
+ Migrating to CreateProjects (20110112183948)
21
+ SQL (0.1ms) select sqlite_version(*)
22
+ SQL (0.7ms) CREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) 
23
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110112183948')
24
+ Migrating to CreateTickets (20110112183956)
25
+ SQL (0.5ms) CREATE TABLE "tickets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "project_id" integer, "description" varchar(255), "status" varchar(255)) 
26
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110112183956')
27
+ SQL (0.8ms)  SELECT name
28
+ FROM sqlite_master
29
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
30
+ 
31
+ SQL (0.2ms) SELECT name
32
+ FROM sqlite_master
33
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
34
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
35
+ Migrating to CreateProjects (20110112183948)
36
+ Migrating to CreateTickets (20110112183956)
37
+ SQL (0.6ms)  SELECT name
38
+ FROM sqlite_master
39
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
40
+ 
41
+ SQL (0.1ms) select sqlite_version(*)
42
+ SQL (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
43
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
44
+ SQL (3.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
45
+ SQL (0.2ms) SELECT name
46
+ FROM sqlite_master
47
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
48
+ SQL (0.2ms)  SELECT name
49
+ FROM sqlite_master
50
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
51
+ 
52
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
53
+ Migrating to CreateProjects (20110112183948)
54
+ SQL (0.5ms) CREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255)) 
55
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110112183948')
56
+ Migrating to CreateTickets (20110112183956)
57
+ SQL (0.4ms) CREATE TABLE "tickets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "project_id" integer, "title" varchar(255), "description" varchar(255), "status" varchar(255)) 
58
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110112183956')
59
+ SQL (0.8ms)  SELECT name
60
+ FROM sqlite_master
61
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
62
+ 
63
+ SQL (0.2ms) SELECT name
64
+ FROM sqlite_master
65
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
66
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
67
+ Migrating to CreateProjects (20110112183948)
68
+ Migrating to CreateTickets (20110112183956)
69
+ SQL (0.3ms) SELECT name
70
+ FROM sqlite_master
71
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
72
+ SQL (0.8ms)  SELECT name
73
+ FROM sqlite_master
74
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
75
+ 
76
+ SQL (0.2ms) SELECT name
77
+ FROM sqlite_master
78
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
79
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
80
+ Migrating to CreateProjects (20110112183948)
81
+ Migrating to CreateTickets (20110112183956)
82
+ SQL (0.8ms)  SELECT name
83
+ FROM sqlite_master
84
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
85
+ 
86
+ SQL (0.2ms) SELECT name
87
+ FROM sqlite_master
88
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
89
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
90
+ Migrating to CreateProjects (20110112183948)
91
+ Migrating to CreateTickets (20110112183956)
92
+ SQL (0.8ms)  SELECT name
93
+ FROM sqlite_master
94
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
95
+ 
96
+ SQL (0.2ms) SELECT name
97
+ FROM sqlite_master
98
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
99
+ SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
100
+ Migrating to CreateProjects (20110112183948)
101
+ Migrating to CreateTickets (20110112183956)
102
+ SQL (0.8ms)  SELECT name
103
+ FROM sqlite_master
104
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
105
+ 
106
+ SQL (0.2ms) SELECT name
107
+ FROM sqlite_master
108
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
109
+ SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
110
+ Migrating to CreateProjects (20110112183948)
111
+ Migrating to CreateTickets (20110112183956)
112
+ SQL (0.8ms)  SELECT name
113
+ FROM sqlite_master
114
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
115
+ 
116
+ SQL (0.2ms) SELECT name
117
+ FROM sqlite_master
118
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
119
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
120
+ Migrating to CreateProjects (20110112183948)
121
+ Migrating to CreateTickets (20110112183956)
122
+ SQL (0.8ms)  SELECT name
123
+ FROM sqlite_master
124
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
125
+ 
126
+ SQL (0.2ms) SELECT name
127
+ FROM sqlite_master
128
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
129
+ SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
130
+ Migrating to CreateProjects (20110112183948)
131
+ Migrating to CreateTickets (20110112183956)
132
+ SQL (0.8ms)  SELECT name
133
+ FROM sqlite_master
134
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
135
+ 
136
+ SQL (0.2ms) SELECT name
137
+ FROM sqlite_master
138
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
139
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
140
+ Migrating to CreateProjects (20110112183948)
141
+ Migrating to CreateTickets (20110112183956)
142
+ SQL (0.3ms) SELECT name
143
+ FROM sqlite_master
144
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
145
+ SQL (0.2ms)  SELECT name
146
+ FROM sqlite_master
147
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
148
+ 
149
+ SQL (0.2ms) SELECT name
150
+ FROM sqlite_master
151
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
152
+ SQL (0.2ms)  SELECT name
153
+ FROM sqlite_master
154
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
155
+ 
156
+ SQL (0.2ms) SELECT name
157
+ FROM sqlite_master
158
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
159
+ SQL (0.2ms)  SELECT name
160
+ FROM sqlite_master
161
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
162
+ 
163
+ SQL (0.2ms) SELECT name
164
+ FROM sqlite_master
165
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
166
+ SQL (0.2ms)  SELECT name
167
+ FROM sqlite_master
168
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
169
+ 
170
+ SQL (0.2ms) SELECT name
171
+ FROM sqlite_master
172
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
173
+ SQL (0.2ms)  SELECT name
174
+ FROM sqlite_master
175
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
176
+ 
177
+ SQL (0.8ms)  SELECT name
178
+ FROM sqlite_master
179
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
180
+ 
181
+ SQL (0.2ms) SELECT name
182
+ FROM sqlite_master
183
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
184
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
185
+ Migrating to CreateProjects (20110112183948)
186
+ Migrating to CreateTickets (20110112183956)
187
+ SQL (0.8ms)  SELECT name
188
+ FROM sqlite_master
189
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
190
+ 
191
+ SQL (0.2ms) SELECT name
192
+ FROM sqlite_master
193
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
194
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
195
+ Migrating to CreateProjects (20110112183948)
196
+ Migrating to CreateTickets (20110112183956)
197
+ SQL (0.8ms)  SELECT name
198
+ FROM sqlite_master
199
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
200
+ 
201
+ SQL (0.2ms) SELECT name
202
+ FROM sqlite_master
203
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
204
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
205
+ Migrating to CreateProjects (20110112183948)
206
+ Migrating to CreateTickets (20110112183956)
207
+ SQL (0.8ms)  SELECT name
208
+ FROM sqlite_master
209
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
210
+ 
211
+ SQL (0.2ms) SELECT name
212
+ FROM sqlite_master
213
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
214
+ SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
215
+ Migrating to CreateProjects (20110112183948)
216
+ Migrating to CreateTickets (20110112183956)
217
+ SQL (1.1ms)  SELECT name
218
+ FROM sqlite_master
219
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
220
+ 
221
+ SQL (0.2ms) SELECT name
222
+ FROM sqlite_master
223
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
224
+ SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
225
+ Migrating to CreateProjects (20110112183948)
226
+ Migrating to CreateTickets (20110112183956)
227
+ SQL (0.9ms)  SELECT name
228
+ FROM sqlite_master
229
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
230
+ 
231
+ SQL (0.2ms) SELECT name
232
+ FROM sqlite_master
233
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
234
+ SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
235
+ Migrating to CreateProjects (20110112183948)
236
+ Migrating to CreateTickets (20110112183956)
237
+ SQL (0.8ms)  SELECT name
238
+ FROM sqlite_master
239
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
240
+ 
241
+ SQL (0.3ms) SELECT name
242
+ FROM sqlite_master
243
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
244
+ SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
245
+ Migrating to CreateProjects (20110112183948)
246
+ Migrating to CreateTickets (20110112183956)
247
+ SQL (0.8ms)  SELECT name
248
+ FROM sqlite_master
249
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
250
+ 
251
+ SQL (0.2ms) SELECT name
252
+ FROM sqlite_master
253
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
254
+ SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
255
+ Migrating to CreateProjects (20110112183948)
256
+ Migrating to CreateTickets (20110112183956)
257
+ SQL (0.8ms)  SELECT name
258
+ FROM sqlite_master
259
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
260
+ 
261
+ SQL (0.2ms) SELECT name
262
+ FROM sqlite_master
263
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
264
+ SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
265
+ Migrating to CreateProjects (20110112183948)
266
+ Migrating to CreateTickets (20110112183956)
267
+ SQL (0.8ms)  SELECT name
268
+ FROM sqlite_master
269
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
270
+ 
271
+ SQL (0.2ms) SELECT name
272
+ FROM sqlite_master
273
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
274
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
275
+ Migrating to CreateProjects (20110112183948)
276
+ Migrating to CreateTickets (20110112183956)
277
+ SQL (0.8ms)  SELECT name
278
+ FROM sqlite_master
279
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
280
+ 
281
+ SQL (0.2ms) SELECT name
282
+ FROM sqlite_master
283
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
284
+ SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
285
+ Migrating to CreateProjects (20110112183948)
286
+ Migrating to CreateTickets (20110112183956)
287
+ SQL (0.8ms)  SELECT name
288
+ FROM sqlite_master
289
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
290
+ 
291
+ SQL (0.2ms) SELECT name
292
+ FROM sqlite_master
293
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
294
+ SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
295
+ Migrating to CreateProjects (20110112183948)
296
+ Migrating to CreateTickets (20110112183956)
297
+ SQL (1.1ms)  SELECT name
298
+ FROM sqlite_master
299
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
300
+ 
301
+ SQL (0.2ms) SELECT name
302
+ FROM sqlite_master
303
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
304
+ SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
305
+ Migrating to CreateProjects (20110112183948)
306
+ Migrating to CreateTickets (20110112183956)
307
+ SQL (0.9ms)  SELECT name
308
+ FROM sqlite_master
309
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
310
+ 
311
+ SQL (0.2ms) SELECT name
312
+ FROM sqlite_master
313
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
314
+ SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
315
+ Migrating to CreateProjects (20110112183948)
316
+ Migrating to CreateTickets (20110112183956)
317
+ SQL (0.8ms)  SELECT name
318
+ FROM sqlite_master
319
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
320
+ 
321
+ SQL (0.2ms) SELECT name
322
+ FROM sqlite_master
323
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
324
+ SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
325
+ Migrating to CreateProjects (20110112183948)
326
+ Migrating to CreateTickets (20110112183956)
327
+ SQL (0.8ms)  SELECT name
328
+ FROM sqlite_master
329
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
330
+ 
331
+ SQL (0.2ms) SELECT name
332
+ FROM sqlite_master
333
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
334
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
335
+ Migrating to CreateProjects (20110112183948)
336
+ Migrating to CreateTickets (20110112183956)
337
+ SQL (1.0ms)  SELECT name
338
+ FROM sqlite_master
339
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
340
+ 
341
+ SQL (0.3ms) SELECT name
342
+ FROM sqlite_master
343
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
344
+ SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
345
+ Migrating to CreateProjects (20110112183948)
346
+ Migrating to CreateTickets (20110112183956)
347
+ SQL (0.8ms)  SELECT name
348
+ FROM sqlite_master
349
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
350
+ 
351
+ SQL (0.2ms) SELECT name
352
+ FROM sqlite_master
353
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
354
+ SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
355
+ Migrating to CreateProjects (20110112183948)
356
+ Migrating to CreateTickets (20110112183956)
357
+ SQL (0.8ms)  SELECT name
358
+ FROM sqlite_master
359
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
360
+ 
361
+ SQL (0.2ms) SELECT name
362
+ FROM sqlite_master
363
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
364
+ SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
365
+ Migrating to CreateProjects (20110112183948)
366
+ Migrating to CreateTickets (20110112183956)
367
+ SQL (0.8ms)  SELECT name
368
+ FROM sqlite_master
369
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
370
+ 
371
+ SQL (0.2ms) SELECT name
372
+ FROM sqlite_master
373
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
374
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
375
+ Migrating to CreateProjects (20110112183948)
376
+ Migrating to CreateTickets (20110112183956)
377
+ SQL (0.8ms)  SELECT name
378
+ FROM sqlite_master
379
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
380
+ 
381
+ SQL (0.2ms) SELECT name
382
+ FROM sqlite_master
383
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
384
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
385
+ Migrating to CreateProjects (20110112183948)
386
+ Migrating to CreateTickets (20110112183956)
387
+ SQL (0.8ms)  SELECT name
388
+ FROM sqlite_master
389
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
390
+ 
391
+ SQL (0.2ms) SELECT name
392
+ FROM sqlite_master
393
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
394
+ SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
395
+ Migrating to CreateProjects (20110112183948)
396
+ Migrating to CreateTickets (20110112183956)
397
+ SQL (0.8ms)  SELECT name
398
+ FROM sqlite_master
399
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
400
+ 
401
+ SQL (0.2ms) SELECT name
402
+ FROM sqlite_master
403
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
404
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
405
+ Migrating to CreateProjects (20110112183948)
406
+ Migrating to CreateTickets (20110112183956)
407
+ SQL (0.8ms)  SELECT name
408
+ FROM sqlite_master
409
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
410
+ 
411
+ SQL (0.2ms) SELECT name
412
+ FROM sqlite_master
413
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
414
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
415
+ Migrating to CreateProjects (20110112183948)
416
+ Migrating to CreateTickets (20110112183956)
417
+ SQL (0.8ms)  SELECT name
418
+ FROM sqlite_master
419
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
420
+ 
421
+ SQL (0.2ms) SELECT name
422
+ FROM sqlite_master
423
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
424
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
425
+ Migrating to CreateProjects (20110112183948)
426
+ Migrating to CreateTickets (20110112183956)
427
+ SQL (0.8ms)  SELECT name
428
+ FROM sqlite_master
429
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
430
+ 
431
+ SQL (0.2ms) SELECT name
432
+ FROM sqlite_master
433
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
434
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
435
+ Migrating to CreateProjects (20110112183948)
436
+ Migrating to CreateTickets (20110112183956)
437
+ SQL (0.8ms)  SELECT name
438
+ FROM sqlite_master
439
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
440
+ 
441
+ SQL (0.2ms) SELECT name
442
+ FROM sqlite_master
443
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
444
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
445
+ Migrating to CreateProjects (20110112183948)
446
+ Migrating to CreateTickets (20110112183956)
447
+ SQL (0.8ms)  SELECT name
448
+ FROM sqlite_master
449
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
450
+ 
451
+ SQL (0.2ms) SELECT name
452
+ FROM sqlite_master
453
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
454
+ SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
455
+ Migrating to CreateProjects (20110112183948)
456
+ Migrating to CreateTickets (20110112183956)
457
+ SQL (21.3ms)  SELECT name
458
+ FROM sqlite_master
459
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
460
+ 
461
+ SQL (0.3ms) SELECT name
462
+ FROM sqlite_master
463
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
464
+ SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
465
+ Migrating to CreateProjects (20110112183948)
466
+ Migrating to CreateTickets (20110112183956)
467
+ SQL (0.7ms)  SELECT name
468
+ FROM sqlite_master
469
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
470
+ 
471
+ SQL (0.2ms) SELECT name
472
+ FROM sqlite_master
473
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
474
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
475
+ Migrating to CreateProjects (20110112183948)
476
+ Migrating to CreateTickets (20110112183956)
477
+ SQL (0.6ms)  SELECT name
478
+ FROM sqlite_master
479
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
480
+ 
481
+ SQL (0.1ms) SELECT name
482
+ FROM sqlite_master
483
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
484
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
485
+ Migrating to CreateProjects (20110112183948)
486
+ Migrating to CreateTickets (20110112183956)
487
+ SQL (2.6ms)  SELECT name
488
+ FROM sqlite_master
489
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
490
+ 
491
+ SQL (0.2ms) SELECT name
492
+ FROM sqlite_master
493
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
494
+ SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
495
+ Migrating to CreateProjects (20110112183948)
496
+ Migrating to CreateTickets (20110112183956)
497
+ SQL (0.8ms)  SELECT name
498
+ FROM sqlite_master
499
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
500
+ 
501
+ SQL (0.2ms) SELECT name
502
+ FROM sqlite_master
503
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
504
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
505
+ Migrating to CreateProjects (20110112183948)
506
+ Migrating to CreateTickets (20110112183956)
507
+ SQL (0.8ms)  SELECT name
508
+ FROM sqlite_master
509
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
510
+ 
511
+ SQL (0.2ms) SELECT name
512
+ FROM sqlite_master
513
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
514
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
515
+ Migrating to CreateProjects (20110112183948)
516
+ Migrating to CreateTickets (20110112183956)
517
+ SQL (0.8ms)  SELECT name
518
+ FROM sqlite_master
519
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
520
+ 
521
+ SQL (0.2ms) SELECT name
522
+ FROM sqlite_master
523
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
524
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
525
+ Migrating to CreateProjects (20110112183948)
526
+ Migrating to CreateTickets (20110112183956)
527
+ SQL (0.8ms)  SELECT name
528
+ FROM sqlite_master
529
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
530
+ 
531
+ SQL (0.2ms) SELECT name
532
+ FROM sqlite_master
533
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
534
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
535
+ Migrating to CreateProjects (20110112183948)
536
+ Migrating to CreateTickets (20110112183956)
537
+ SQL (0.8ms)  SELECT name
538
+ FROM sqlite_master
539
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
540
+ 
541
+ SQL (0.2ms) SELECT name
542
+ FROM sqlite_master
543
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
544
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
545
+ Migrating to CreateProjects (20110112183948)
546
+ Migrating to CreateTickets (20110112183956)
547
+ SQL (0.8ms)  SELECT name
548
+ FROM sqlite_master
549
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
550
+ 
551
+ SQL (0.2ms) SELECT name
552
+ FROM sqlite_master
553
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
554
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
555
+ Migrating to CreateProjects (20110112183948)
556
+ Migrating to CreateTickets (20110112183956)
557
+ SQL (0.8ms)  SELECT name
558
+ FROM sqlite_master
559
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
560
+ 
561
+ SQL (0.2ms) SELECT name
562
+ FROM sqlite_master
563
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
564
+ SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
565
+ Migrating to CreateProjects (20110112183948)
566
+ Migrating to CreateTickets (20110112183956)
567
+ SQL (0.8ms)  SELECT name
568
+ FROM sqlite_master
569
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
570
+ 
571
+ SQL (0.2ms) SELECT name
572
+ FROM sqlite_master
573
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
574
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
575
+ Migrating to CreateProjects (20110112183948)
576
+ Migrating to CreateTickets (20110112183956)
577
+ SQL (0.8ms)  SELECT name
578
+ FROM sqlite_master
579
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
580
+ 
581
+ SQL (0.2ms) SELECT name
582
+ FROM sqlite_master
583
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
584
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
585
+ Migrating to CreateProjects (20110112183948)
586
+ Migrating to CreateTickets (20110112183956)
587
+ SQL (0.8ms)  SELECT name
588
+ FROM sqlite_master
589
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
590
+ 
591
+ SQL (0.2ms) SELECT name
592
+ FROM sqlite_master
593
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
594
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
595
+ Migrating to CreateProjects (20110112183948)
596
+ Migrating to CreateTickets (20110112183956)
597
+ SQL (0.8ms)  SELECT name
598
+ FROM sqlite_master
599
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
600
+ 
601
+ SQL (0.2ms) SELECT name
602
+ FROM sqlite_master
603
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
604
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
605
+ Migrating to CreateProjects (20110112183948)
606
+ Migrating to CreateTickets (20110112183956)
607
+ SQL (0.8ms)  SELECT name
608
+ FROM sqlite_master
609
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
610
+ 
611
+ SQL (0.2ms) SELECT name
612
+ FROM sqlite_master
613
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
614
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
615
+ Migrating to CreateProjects (20110112183948)
616
+ Migrating to CreateTickets (20110112183956)
617
+ SQL (0.8ms)  SELECT name
618
+ FROM sqlite_master
619
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
620
+ 
621
+ SQL (0.2ms) SELECT name
622
+ FROM sqlite_master
623
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
624
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
625
+ Migrating to CreateProjects (20110112183948)
626
+ Migrating to CreateTickets (20110112183956)
627
+ SQL (0.8ms)  SELECT name
628
+ FROM sqlite_master
629
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
630
+ 
631
+ SQL (0.2ms) SELECT name
632
+ FROM sqlite_master
633
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
634
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
635
+ Migrating to CreateProjects (20110112183948)
636
+ Migrating to CreateTickets (20110112183956)
637
+ SQL (0.8ms)  SELECT name
638
+ FROM sqlite_master
639
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
640
+ 
641
+ SQL (0.2ms) SELECT name
642
+ FROM sqlite_master
643
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
644
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
645
+ Migrating to CreateProjects (20110112183948)
646
+ Migrating to CreateTickets (20110112183956)
647
+ SQL (0.8ms)  SELECT name
648
+ FROM sqlite_master
649
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
650
+ 
651
+ SQL (0.2ms) SELECT name
652
+ FROM sqlite_master
653
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
654
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
655
+ Migrating to CreateProjects (20110112183948)
656
+ Migrating to CreateTickets (20110112183956)
657
+ SQL (0.8ms)  SELECT name
658
+ FROM sqlite_master
659
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
660
+ 
661
+ SQL (0.2ms) SELECT name
662
+ FROM sqlite_master
663
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
664
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
665
+ Migrating to CreateProjects (20110112183948)
666
+ Migrating to CreateTickets (20110112183956)
667
+ SQL (0.8ms)  SELECT name
668
+ FROM sqlite_master
669
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
670
+ 
671
+ SQL (0.2ms) SELECT name
672
+ FROM sqlite_master
673
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
674
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
675
+ Migrating to CreateProjects (20110112183948)
676
+ Migrating to CreateTickets (20110112183956)
677
+ SQL (0.8ms)  SELECT name
678
+ FROM sqlite_master
679
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
680
+ 
681
+ SQL (0.2ms) SELECT name
682
+ FROM sqlite_master
683
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
684
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
685
+ Migrating to CreateProjects (20110112183948)
686
+ Migrating to CreateTickets (20110112183956)
687
+ SQL (0.8ms)  SELECT name
688
+ FROM sqlite_master
689
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
690
+ 
691
+ SQL (0.2ms) SELECT name
692
+ FROM sqlite_master
693
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
694
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
695
+ Migrating to CreateProjects (20110112183948)
696
+ Migrating to CreateTickets (20110112183956)
697
+ SQL (0.8ms)  SELECT name
698
+ FROM sqlite_master
699
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
700
+ 
701
+ SQL (0.2ms) SELECT name
702
+ FROM sqlite_master
703
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
704
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
705
+ Migrating to CreateProjects (20110112183948)
706
+ Migrating to CreateTickets (20110112183956)
707
+ SQL (0.8ms)  SELECT name
708
+ FROM sqlite_master
709
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
710
+ 
711
+ SQL (0.2ms) SELECT name
712
+ FROM sqlite_master
713
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
714
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
715
+ Migrating to CreateProjects (20110112183948)
716
+ Migrating to CreateTickets (20110112183956)
717
+ SQL (0.9ms)  SELECT name
718
+ FROM sqlite_master
719
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
720
+ 
721
+ SQL (0.2ms) SELECT name
722
+ FROM sqlite_master
723
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
724
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
725
+ Migrating to CreateProjects (20110112183948)
726
+ Migrating to CreateTickets (20110112183956)
727
+ SQL (0.8ms)  SELECT name
728
+ FROM sqlite_master
729
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
730
+ 
731
+ SQL (0.2ms) SELECT name
732
+ FROM sqlite_master
733
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
734
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
735
+ Migrating to CreateProjects (20110112183948)
736
+ Migrating to CreateTickets (20110112183956)
737
+ SQL (0.8ms)  SELECT name
738
+ FROM sqlite_master
739
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
740
+ 
741
+ SQL (0.2ms) SELECT name
742
+ FROM sqlite_master
743
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
744
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
745
+ Migrating to CreateProjects (20110112183948)
746
+ Migrating to CreateTickets (20110112183956)
747
+ SQL (0.8ms)  SELECT name
748
+ FROM sqlite_master
749
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
750
+ 
751
+ SQL (0.2ms) SELECT name
752
+ FROM sqlite_master
753
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
754
+ SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
755
+ Migrating to CreateProjects (20110112183948)
756
+ Migrating to CreateTickets (20110112183956)
757
+ SQL (0.8ms)  SELECT name
758
+ FROM sqlite_master
759
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
760
+ 
761
+ SQL (0.2ms) SELECT name
762
+ FROM sqlite_master
763
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
764
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
765
+ Migrating to CreateProjects (20110112183948)
766
+ Migrating to CreateTickets (20110112183956)
767
+ SQL (0.8ms)  SELECT name
768
+ FROM sqlite_master
769
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
770
+ 
771
+ SQL (0.2ms) SELECT name
772
+ FROM sqlite_master
773
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
774
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
775
+ Migrating to CreateProjects (20110112183948)
776
+ Migrating to CreateTickets (20110112183956)
777
+ SQL (0.8ms)  SELECT name
778
+ FROM sqlite_master
779
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
780
+ 
781
+ SQL (0.2ms) SELECT name
782
+ FROM sqlite_master
783
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
784
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
785
+ Migrating to CreateProjects (20110112183948)
786
+ Migrating to CreateTickets (20110112183956)
787
+ SQL (0.8ms)  SELECT name
788
+ FROM sqlite_master
789
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
790
+ 
791
+ SQL (0.2ms) SELECT name
792
+ FROM sqlite_master
793
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
794
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
795
+ Migrating to CreateProjects (20110112183948)
796
+ Migrating to CreateTickets (20110112183956)
797
+ SQL (0.8ms)  SELECT name
798
+ FROM sqlite_master
799
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
800
+ 
801
+ SQL (0.2ms) SELECT name
802
+ FROM sqlite_master
803
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
804
+ SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
805
+ Migrating to CreateProjects (20110112183948)
806
+ Migrating to CreateTickets (20110112183956)
807
+ SQL (0.8ms)  SELECT name
808
+ FROM sqlite_master
809
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
810
+ 
811
+ SQL (0.2ms) SELECT name
812
+ FROM sqlite_master
813
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
814
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
815
+ Migrating to CreateProjects (20110112183948)
816
+ Migrating to CreateTickets (20110112183956)
817
+ SQL (0.8ms)  SELECT name
818
+ FROM sqlite_master
819
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
820
+ 
821
+ SQL (0.2ms) SELECT name
822
+ FROM sqlite_master
823
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
824
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
825
+ Migrating to CreateProjects (20110112183948)
826
+ Migrating to CreateTickets (20110112183956)
827
+ SQL (0.8ms)  SELECT name
828
+ FROM sqlite_master
829
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
830
+ 
831
+ SQL (0.2ms) SELECT name
832
+ FROM sqlite_master
833
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
834
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
835
+ Migrating to CreateProjects (20110112183948)
836
+ Migrating to CreateTickets (20110112183956)
837
+ SQL (0.8ms)  SELECT name
838
+ FROM sqlite_master
839
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
840
+ 
841
+ SQL (0.2ms) SELECT name
842
+ FROM sqlite_master
843
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
844
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
845
+ Migrating to CreateProjects (20110112183948)
846
+ Migrating to CreateTickets (20110112183956)
847
+ SQL (0.8ms)  SELECT name
848
+ FROM sqlite_master
849
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
850
+ 
851
+ SQL (0.2ms) SELECT name
852
+ FROM sqlite_master
853
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
854
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
855
+ Migrating to CreateProjects (20110112183948)
856
+ Migrating to CreateTickets (20110112183956)
857
+ SQL (0.8ms)  SELECT name
858
+ FROM sqlite_master
859
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
860
+ 
861
+ SQL (0.2ms) SELECT name
862
+ FROM sqlite_master
863
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
864
+ SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
865
+ Migrating to CreateProjects (20110112183948)
866
+ Migrating to CreateTickets (20110112183956)
867
+ SQL (0.9ms)  SELECT name
868
+ FROM sqlite_master
869
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
870
+ 
871
+ SQL (0.2ms) SELECT name
872
+ FROM sqlite_master
873
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
874
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
875
+ Migrating to CreateProjects (20110112183948)
876
+ Migrating to CreateTickets (20110112183956)
877
+ SQL (0.8ms)  SELECT name
878
+ FROM sqlite_master
879
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
880
+ 
881
+ SQL (0.2ms) SELECT name
882
+ FROM sqlite_master
883
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
884
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
885
+ Migrating to CreateProjects (20110112183948)
886
+ Migrating to CreateTickets (20110112183956)
887
+ SQL (0.8ms)  SELECT name
888
+ FROM sqlite_master
889
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
890
+ 
891
+ SQL (0.2ms) SELECT name
892
+ FROM sqlite_master
893
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
894
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
895
+ Migrating to CreateProjects (20110112183948)
896
+ Migrating to CreateTickets (20110112183956)
897
+ SQL (0.7ms)  SELECT name
898
+ FROM sqlite_master
899
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
900
+ 
901
+ SQL (0.1ms) SELECT name
902
+ FROM sqlite_master
903
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
904
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
905
+ Migrating to CreateProjects (20110112183948)
906
+ Migrating to CreateTickets (20110112183956)
907
+ SQL (0.6ms)  SELECT name
908
+ FROM sqlite_master
909
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
910
+ 
911
+ SQL (0.1ms) SELECT name
912
+ FROM sqlite_master
913
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
914
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
915
+ Migrating to CreateProjects (20110112183948)
916
+ Migrating to CreateTickets (20110112183956)
917
+ SQL (0.6ms)  SELECT name
918
+ FROM sqlite_master
919
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
920
+ 
921
+ SQL (0.1ms) SELECT name
922
+ FROM sqlite_master
923
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
924
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
925
+ Migrating to CreateProjects (20110112183948)
926
+ Migrating to CreateTickets (20110112183956)
927
+ SQL (0.6ms)  SELECT name
928
+ FROM sqlite_master
929
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
930
+ 
931
+ SQL (0.1ms) SELECT name
932
+ FROM sqlite_master
933
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
934
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
935
+ Migrating to CreateProjects (20110112183948)
936
+ Migrating to CreateTickets (20110112183956)
937
+ SQL (0.6ms)  SELECT name
938
+ FROM sqlite_master
939
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
940
+ 
941
+ SQL (0.1ms) SELECT name
942
+ FROM sqlite_master
943
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
944
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
945
+ Migrating to CreateProjects (20110112183948)
946
+ Migrating to CreateTickets (20110112183956)
947
+ SQL (0.6ms)  SELECT name
948
+ FROM sqlite_master
949
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
950
+ 
951
+ SQL (0.1ms) SELECT name
952
+ FROM sqlite_master
953
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
954
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
955
+ Migrating to CreateProjects (20110112183948)
956
+ Migrating to CreateTickets (20110112183956)
957
+ SQL (1.0ms)  SELECT name
958
+ FROM sqlite_master
959
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
960
+ 
961
+ SQL (0.2ms) SELECT name
962
+ FROM sqlite_master
963
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
964
+ SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
965
+ Migrating to CreateProjects (20110112183948)
966
+ Migrating to CreateTickets (20110112183956)
967
+ SQL (0.8ms)  SELECT name
968
+ FROM sqlite_master
969
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
970
+ 
971
+ SQL (0.2ms) SELECT name
972
+ FROM sqlite_master
973
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
974
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
975
+ Migrating to CreateProjects (20110112183948)
976
+ Migrating to CreateTickets (20110112183956)
977
+ SQL (0.8ms)  SELECT name
978
+ FROM sqlite_master
979
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
980
+ 
981
+ SQL (0.2ms) SELECT name
982
+ FROM sqlite_master
983
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
984
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
985
+ Migrating to CreateProjects (20110112183948)
986
+ Migrating to CreateTickets (20110112183956)
987
+ SQL (0.8ms)  SELECT name
988
+ FROM sqlite_master
989
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
990
+ 
991
+ SQL (0.2ms) SELECT name
992
+ FROM sqlite_master
993
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
994
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
995
+ Migrating to CreateProjects (20110112183948)
996
+ Migrating to CreateTickets (20110112183956)
997
+ SQL (0.9ms)  SELECT name
998
+ FROM sqlite_master
999
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1000
+ 
1001
+ SQL (0.2ms) SELECT name
1002
+ FROM sqlite_master
1003
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1004
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1005
+ Migrating to CreateProjects (20110112183948)
1006
+ Migrating to CreateTickets (20110112183956)
1007
+ SQL (0.9ms)  SELECT name
1008
+ FROM sqlite_master
1009
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1010
+ 
1011
+ SQL (0.2ms) SELECT name
1012
+ FROM sqlite_master
1013
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1014
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1015
+ Migrating to CreateProjects (20110112183948)
1016
+ Migrating to CreateTickets (20110112183956)
1017
+ SQL (0.8ms)  SELECT name
1018
+ FROM sqlite_master
1019
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1020
+ 
1021
+ SQL (0.2ms) SELECT name
1022
+ FROM sqlite_master
1023
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1024
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1025
+ Migrating to CreateProjects (20110112183948)
1026
+ Migrating to CreateTickets (20110112183956)