pose 2.1.0 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +2 -0
- data/app/models/pose/assignment.rb +0 -2
- data/app/models/pose/word.rb +0 -2
- data/lib/pose/model_class_additions.rb +1 -1
- data/lib/pose/version.rb +1 -1
- data/spec/dummy/app/models/posable_one.rb +0 -2
- data/spec/dummy/app/models/posable_two.rb +0 -2
- data/spec/dummy/app/models/user.rb +0 -2
- data/spec/dummy/config/application.rb +0 -36
- data/spec/dummy/config/environments/development.rb +12 -19
- data/spec/dummy/config/environments/production.rb +41 -27
- data/spec/dummy/config/environments/test.rb +14 -14
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/schema.rb +14 -14
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/development.log +237 -187
- data/spec/dummy/log/test.log +68010 -79360
- data/spec/lib/pose/search_spec.rb +3 -3
- data/spec/spec_helper.rb +1 -1
- metadata +6 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b5795ce133c87ea0c6f0841d857b1e106bd527d1
|
4
|
+
data.tar.gz: e7404bd3671c5c12df5a190df2ce48699d018efc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ba4cdcc4bb8680bff841c706b96e1d252fec59e5394c69260dd831d9366c8a07f2d9c3d16f69c2ceb4bdc6e43ef8a4ec757fe214a3a3abfc80ada389cdea721a
|
7
|
+
data.tar.gz: 9415d0ece9e8984aeba669647b83e7fc7be78b3ff5bf827888a0f9851e48defc66b4a13b6703f29f19b3cbe4da7e6bb1259a2baee7a9f13ebe610e96e437733d
|
data/README.md
CHANGED
@@ -9,6 +9,8 @@ A database agnostic fulltext search engine for ActiveRecord objects in Ruby on R
|
|
9
9
|
* Very fast search, doing only simple queries over fully indexed columns.
|
10
10
|
* Allows to augment the fulltext search query with your own joins and where clauses.
|
11
11
|
|
12
|
+
Version 3.x is for Rails 4 compatibilty. For Rails 3.x, please use versions 2.x.
|
13
|
+
|
12
14
|
|
13
15
|
## Installation
|
14
16
|
|
data/app/models/pose/word.rb
CHANGED
@@ -33,7 +33,7 @@ module Pose
|
|
33
33
|
|
34
34
|
# Step 2: Add new words to the search index.
|
35
35
|
Helpers.get_words_to_add(self.pose_words, new_words).each do |word_to_add|
|
36
|
-
self.pose_words << Word.
|
36
|
+
self.pose_words << Word.find_or_create_by(text: word_to_add)
|
37
37
|
end
|
38
38
|
|
39
39
|
# Step 3: Remove now obsolete words from search index.
|
data/lib/pose/version.rb
CHANGED
@@ -11,16 +11,6 @@ module Dummy
|
|
11
11
|
# Application configuration should go into files in config/initializers
|
12
12
|
# -- all .rb files in that directory are automatically loaded.
|
13
13
|
|
14
|
-
# Custom directories with classes and modules you want to be autoloadable.
|
15
|
-
# config.autoload_paths += %W(#{config.root}/extras)
|
16
|
-
|
17
|
-
# Only load the plugins named here, in the order given (default is alphabetical).
|
18
|
-
# :all can be used as a placeholder for all plugins not explicitly named.
|
19
|
-
# config.plugins = [ :exception_notification, :ssl_requirement, :all ]
|
20
|
-
|
21
|
-
# Activate observers that should always be running.
|
22
|
-
# config.active_record.observers = :cacher, :garbage_collector, :forum_observer
|
23
|
-
|
24
14
|
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
|
25
15
|
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
|
26
16
|
# config.time_zone = 'Central Time (US & Canada)'
|
@@ -28,32 +18,6 @@ module Dummy
|
|
28
18
|
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
|
29
19
|
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
30
20
|
# config.i18n.default_locale = :de
|
31
|
-
|
32
|
-
# Configure the default encoding used in templates for Ruby 1.9.
|
33
|
-
config.encoding = "utf-8"
|
34
|
-
|
35
|
-
# Configure sensitive parameters which will be filtered from the log file.
|
36
|
-
config.filter_parameters += [:password]
|
37
|
-
|
38
|
-
# Enable escaping HTML in JSON.
|
39
|
-
config.active_support.escape_html_entities_in_json = true
|
40
|
-
|
41
|
-
# Use SQL instead of Active Record's schema dumper when creating the database.
|
42
|
-
# This is necessary if your schema can't be completely dumped by the schema dumper,
|
43
|
-
# like if you have constraints or database-specific column types
|
44
|
-
# config.active_record.schema_format = :sql
|
45
|
-
|
46
|
-
# Enforce whitelist mode for mass assignment.
|
47
|
-
# This will create an empty whitelist of attributes available for mass-assignment for all models
|
48
|
-
# in your app. As such, your models will need to explicitly whitelist or blacklist accessible
|
49
|
-
# parameters by using an attr_accessible or attr_protected declaration.
|
50
|
-
config.active_record.whitelist_attributes = true
|
51
|
-
|
52
|
-
# Enable the asset pipeline
|
53
|
-
config.assets.enabled = true
|
54
|
-
|
55
|
-
# Version of your assets, change this if you want to expire all your assets
|
56
|
-
config.assets.version = '1.0'
|
57
21
|
end
|
58
22
|
end
|
59
23
|
|
@@ -1,37 +1,30 @@
|
|
1
1
|
Dummy::Application.configure do
|
2
|
-
# Settings specified here will take precedence over those in config/application.rb
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb.
|
3
3
|
|
4
4
|
# In the development environment your application's code is reloaded on
|
5
5
|
# every request. This slows down response time but is perfect for development
|
6
6
|
# since you don't have to restart the web server when you make code changes.
|
7
7
|
config.cache_classes = false
|
8
8
|
|
9
|
-
#
|
10
|
-
config.
|
9
|
+
# Do not eager load code on boot.
|
10
|
+
config.eager_load = false
|
11
11
|
|
12
|
-
# Show full error reports and disable caching
|
12
|
+
# Show full error reports and disable caching.
|
13
13
|
config.consider_all_requests_local = true
|
14
14
|
config.action_controller.perform_caching = false
|
15
15
|
|
16
|
-
# Don't care if the mailer can't send
|
16
|
+
# Don't care if the mailer can't send.
|
17
17
|
config.action_mailer.raise_delivery_errors = false
|
18
18
|
|
19
|
-
# Print deprecation notices to the Rails logger
|
19
|
+
# Print deprecation notices to the Rails logger.
|
20
20
|
config.active_support.deprecation = :log
|
21
21
|
|
22
|
-
#
|
23
|
-
config.
|
22
|
+
# Raise an error on page load if there are pending migrations
|
23
|
+
config.active_record.migration_error = :page_load
|
24
24
|
|
25
|
-
#
|
26
|
-
|
27
|
-
|
28
|
-
# Log the query plan for queries taking more than this (works
|
29
|
-
# with SQLite, MySQL, and PostgreSQL)
|
30
|
-
config.active_record.auto_explain_threshold_in_seconds = 0.5
|
31
|
-
|
32
|
-
# Do not compress assets
|
33
|
-
config.assets.compress = false
|
34
|
-
|
35
|
-
# Expands the lines which load the assets
|
25
|
+
# Debug mode disables concatenation and preprocessing of assets.
|
26
|
+
# This option may cause significant delays in view rendering with a large
|
27
|
+
# number of complex assets.
|
36
28
|
config.assets.debug = true
|
37
29
|
end
|
30
|
+
|
@@ -1,67 +1,81 @@
|
|
1
1
|
Dummy::Application.configure do
|
2
|
-
# Settings specified here will take precedence over those in config/application.rb
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb.
|
3
3
|
|
4
|
-
# Code is not reloaded between requests
|
4
|
+
# Code is not reloaded between requests.
|
5
5
|
config.cache_classes = true
|
6
6
|
|
7
|
-
#
|
7
|
+
# Eager load code on boot. This eager loads most of Rails and
|
8
|
+
# your application in memory, allowing both thread web servers
|
9
|
+
# and those relying on copy on write to perform better.
|
10
|
+
# Rake tasks automatically ignore this option for performance.
|
11
|
+
config.eager_load = true
|
12
|
+
|
13
|
+
# Full error reports are disabled and caching is turned on.
|
8
14
|
config.consider_all_requests_local = false
|
9
15
|
config.action_controller.perform_caching = true
|
10
16
|
|
11
|
-
#
|
17
|
+
# Enable Rack::Cache to put a simple HTTP cache in front of your application
|
18
|
+
# Add `rack-cache` to your Gemfile before enabling this.
|
19
|
+
# For large-scale production use, consider using a caching reverse proxy like nginx, varnish or squid.
|
20
|
+
# config.action_dispatch.rack_cache = true
|
21
|
+
|
22
|
+
# Disable Rails's static asset server (Apache or nginx will already do this).
|
12
23
|
config.serve_static_assets = false
|
13
24
|
|
14
|
-
# Compress JavaScripts and CSS
|
15
|
-
config.assets.
|
25
|
+
# Compress JavaScripts and CSS.
|
26
|
+
config.assets.js_compressor = :uglifier
|
27
|
+
# config.assets.css_compressor = :sass
|
16
28
|
|
17
|
-
#
|
29
|
+
# Do not fallback to assets pipeline if a precompiled asset is missed.
|
18
30
|
config.assets.compile = false
|
19
31
|
|
20
|
-
# Generate digests for assets URLs
|
32
|
+
# Generate digests for assets URLs.
|
21
33
|
config.assets.digest = true
|
22
34
|
|
23
|
-
#
|
24
|
-
|
35
|
+
# Version of your assets, change this if you want to expire all your assets.
|
36
|
+
config.assets.version = '1.0'
|
25
37
|
|
26
|
-
# Specifies the header that your server uses for sending files
|
38
|
+
# Specifies the header that your server uses for sending files.
|
27
39
|
# config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
|
28
40
|
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
|
29
41
|
|
30
42
|
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
|
31
43
|
# config.force_ssl = true
|
32
44
|
|
33
|
-
#
|
34
|
-
|
45
|
+
# Set to :debug to see everything in the log.
|
46
|
+
config.log_level = :info
|
35
47
|
|
36
|
-
# Prepend all log lines with the following tags
|
48
|
+
# Prepend all log lines with the following tags.
|
37
49
|
# config.log_tags = [ :subdomain, :uuid ]
|
38
50
|
|
39
|
-
# Use a different logger for distributed setups
|
51
|
+
# Use a different logger for distributed setups.
|
40
52
|
# config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
|
41
53
|
|
42
|
-
# Use a different cache store in production
|
54
|
+
# Use a different cache store in production.
|
43
55
|
# config.cache_store = :mem_cache_store
|
44
56
|
|
45
|
-
# Enable serving of images, stylesheets, and JavaScripts from an asset server
|
57
|
+
# Enable serving of images, stylesheets, and JavaScripts from an asset server.
|
46
58
|
# config.action_controller.asset_host = "http://assets.example.com"
|
47
59
|
|
48
|
-
# Precompile additional assets
|
60
|
+
# Precompile additional assets.
|
61
|
+
# application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
|
49
62
|
# config.assets.precompile += %w( search.js )
|
50
63
|
|
51
|
-
#
|
64
|
+
# Ignore bad email addresses and do not raise email delivery errors.
|
65
|
+
# Set this to true and configure the email server for immediate delivery to raise delivery errors.
|
52
66
|
# config.action_mailer.raise_delivery_errors = false
|
53
67
|
|
54
|
-
# Enable threaded mode
|
55
|
-
# config.threadsafe!
|
56
|
-
|
57
68
|
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
|
58
|
-
# the I18n.default_locale when a translation can not be found)
|
69
|
+
# the I18n.default_locale when a translation can not be found).
|
59
70
|
config.i18n.fallbacks = true
|
60
71
|
|
61
|
-
# Send deprecation notices to registered listeners
|
72
|
+
# Send deprecation notices to registered listeners.
|
62
73
|
config.active_support.deprecation = :notify
|
63
74
|
|
64
|
-
#
|
65
|
-
#
|
66
|
-
|
75
|
+
# Disable automatic flushing of the log to improve performance.
|
76
|
+
# config.autoflush_log = false
|
77
|
+
|
78
|
+
# Use default logging formatter so that PID and timestamp are not suppressed.
|
79
|
+
config.log_formatter = ::Logger::Formatter.new
|
67
80
|
end
|
81
|
+
|
@@ -1,5 +1,5 @@
|
|
1
1
|
Dummy::Application.configure do
|
2
|
-
# Settings specified here will take precedence over those in config/application.rb
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb.
|
3
3
|
|
4
4
|
# The test environment is used exclusively to run your application's
|
5
5
|
# test suite. You never need to work with it otherwise. Remember that
|
@@ -7,31 +7,31 @@ Dummy::Application.configure do
|
|
7
7
|
# and recreated between test runs. Don't rely on the data there!
|
8
8
|
config.cache_classes = true
|
9
9
|
|
10
|
-
#
|
11
|
-
|
12
|
-
|
10
|
+
# Do not eager load code on boot. This avoids loading your whole application
|
11
|
+
# just for the purpose of running a single test. If you are using a tool that
|
12
|
+
# preloads Rails for running tests, you may have to set it to true.
|
13
|
+
config.eager_load = false
|
13
14
|
|
14
|
-
#
|
15
|
-
config.
|
15
|
+
# Configure static asset server for tests with Cache-Control for performance.
|
16
|
+
config.serve_static_assets = true
|
17
|
+
config.static_cache_control = "public, max-age=3600"
|
16
18
|
|
17
|
-
# Show full error reports and disable caching
|
19
|
+
# Show full error reports and disable caching.
|
18
20
|
config.consider_all_requests_local = true
|
19
21
|
config.action_controller.perform_caching = false
|
20
22
|
|
21
|
-
# Raise exceptions instead of rendering exception templates
|
23
|
+
# Raise exceptions instead of rendering exception templates.
|
22
24
|
config.action_dispatch.show_exceptions = false
|
23
25
|
|
24
|
-
# Disable request forgery protection in test environment
|
25
|
-
config.action_controller.allow_forgery_protection
|
26
|
+
# Disable request forgery protection in test environment.
|
27
|
+
config.action_controller.allow_forgery_protection = false
|
26
28
|
|
27
29
|
# Tell Action Mailer not to deliver emails to the real world.
|
28
30
|
# The :test delivery method accumulates sent emails in the
|
29
31
|
# ActionMailer::Base.deliveries array.
|
30
32
|
config.action_mailer.delivery_method = :test
|
31
33
|
|
32
|
-
#
|
33
|
-
config.active_record.mass_assignment_sanitizer = :strict
|
34
|
-
|
35
|
-
# Print deprecation notices to the stderr
|
34
|
+
# Print deprecation notices to the stderr.
|
36
35
|
config.active_support.deprecation = :stderr
|
37
36
|
end
|
37
|
+
|
Binary file
|
data/spec/dummy/db/schema.rb
CHANGED
@@ -9,38 +9,38 @@
|
|
9
9
|
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
|
10
10
|
# you'll amass, the slower it'll run and the greater likelihood for issues).
|
11
11
|
#
|
12
|
-
# It's strongly recommended
|
12
|
+
# It's strongly recommended that you check this file into your version control system.
|
13
13
|
|
14
|
-
ActiveRecord::Schema.define(:
|
14
|
+
ActiveRecord::Schema.define(version: 20130708084009) do
|
15
15
|
|
16
|
-
create_table "posable_ones", :
|
16
|
+
create_table "posable_ones", force: true do |t|
|
17
17
|
t.string "text"
|
18
18
|
t.boolean "private"
|
19
19
|
t.integer "user_id"
|
20
20
|
end
|
21
21
|
|
22
|
-
create_table "posable_twos", :
|
22
|
+
create_table "posable_twos", force: true do |t|
|
23
23
|
t.string "text"
|
24
24
|
t.boolean "private"
|
25
25
|
t.integer "user_id"
|
26
26
|
end
|
27
27
|
|
28
|
-
create_table "pose_assignments", :
|
29
|
-
t.integer "word_id",
|
30
|
-
t.integer "posable_id",
|
31
|
-
t.string "posable_type", :
|
28
|
+
create_table "pose_assignments", force: true do |t|
|
29
|
+
t.integer "word_id", null: false
|
30
|
+
t.integer "posable_id", null: false
|
31
|
+
t.string "posable_type", limit: 60, null: false
|
32
32
|
end
|
33
33
|
|
34
|
-
add_index "pose_assignments", ["posable_id"], :
|
35
|
-
add_index "pose_assignments", ["word_id"], :
|
34
|
+
add_index "pose_assignments", ["posable_id"], name: "index_pose_assignments_on_posable_id"
|
35
|
+
add_index "pose_assignments", ["word_id"], name: "index_pose_assignments_on_word_id"
|
36
36
|
|
37
|
-
create_table "pose_words", :
|
38
|
-
t.string "text", :
|
37
|
+
create_table "pose_words", force: true do |t|
|
38
|
+
t.string "text", limit: 80, null: false
|
39
39
|
end
|
40
40
|
|
41
|
-
add_index "pose_words", ["text"], :
|
41
|
+
add_index "pose_words", ["text"], name: "index_pose_words_on_text"
|
42
42
|
|
43
|
-
create_table "users", :
|
43
|
+
create_table "users", force: true do |t|
|
44
44
|
t.string "name"
|
45
45
|
end
|
46
46
|
|
data/spec/dummy/db/test.sqlite3
CHANGED
Binary file
|
@@ -1,259 +1,309 @@
|
|
1
|
+
Connecting to database specified by database.yml
|
1
2
|
Connecting to database specified by database.yml
|
2
3
|
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
3
|
-
[1m[35m (1.
|
4
|
-
[1m[36m (0.
|
5
|
-
[1m[35m (
|
6
|
-
Migrating to
|
7
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
8
|
-
[1m[35m (0.4ms)[0m CREATE TABLE "posable_ones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(255), "private" boolean)
|
9
|
-
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130308054001')[0m
|
10
|
-
[1m[35m (0.7ms)[0m commit transaction
|
11
|
-
Migrating to CreatePosableTwo (20130308054142)
|
12
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
13
|
-
[1m[35m (0.2ms)[0m CREATE TABLE "posable_twos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(255), "private" boolean)
|
14
|
-
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130308054142')[0m
|
15
|
-
[1m[35m (0.7ms)[0m commit transaction
|
16
|
-
Migrating to PoseInstall (20130308144915)
|
4
|
+
[1m[35m (1.0ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
5
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
6
|
+
[1m[35m (1.5ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
7
|
+
Migrating to InstallPose (20130308053038)
|
17
8
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
18
|
-
[1m[35m (0.
|
19
|
-
[1m[36m (0.1ms)[0m [1mCREATE INDEX "
|
9
|
+
[1m[35m (0.4ms)[0m CREATE TABLE "pose_assignments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "pose_word_id" integer NOT NULL, "posable_id" integer NOT NULL, "posable_type" varchar(40) NOT NULL)
|
10
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_pose_assignments_on_pose_word_id" ON "pose_assignments" ("pose_word_id")[0m
|
20
11
|
[1m[35m (0.1ms)[0m CREATE INDEX "index_pose_assignments_on_posable_id" ON "pose_assignments" ("posable_id")
|
21
12
|
[1m[36m (0.1ms)[0m [1mCREATE TABLE "pose_words" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(80) NOT NULL) [0m
|
22
13
|
[1m[35m (0.1ms)[0m CREATE INDEX "index_pose_words_on_text" ON "pose_words" ("text")
|
23
|
-
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('
|
24
|
-
[1m[35m (0.
|
14
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130308053038')[0m
|
15
|
+
[1m[35m (0.9ms)[0m commit transaction
|
25
16
|
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
26
17
|
Connecting to database specified by database.yml
|
27
|
-
[1m[36m (
|
28
|
-
|
29
|
-
[1m[
|
30
|
-
[1m[35m (0.7ms)[0m CREATE TABLE "posable_twos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(255), "private" boolean)
|
31
|
-
[1m[36m (0.8ms)[0m [1mCREATE TABLE "pose_assignments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "word_id" integer NOT NULL, "posable_id" integer NOT NULL, "posable_type" varchar(60) NOT NULL) [0m
|
32
|
-
[1m[35m (0.7ms)[0m CREATE INDEX "index_pose_assignments_on_posable_id" ON "pose_assignments" ("posable_id")
|
33
|
-
[1m[36m (0.6ms)[0m [1mCREATE INDEX "index_pose_assignments_on_word_id" ON "pose_assignments" ("word_id")[0m
|
34
|
-
[1m[35m (0.8ms)[0m CREATE TABLE "pose_words" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(80) NOT NULL)
|
35
|
-
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_pose_words_on_text" ON "pose_words" ("text")[0m
|
36
|
-
[1m[35m (0.7ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
37
|
-
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
38
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
39
|
-
[1m[36m (0.5ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130308144915')[0m
|
40
|
-
[1m[35m (0.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130308054001')
|
41
|
-
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130308054142')[0m
|
42
|
-
Connecting to database specified by database.yml
|
18
|
+
[1m[36m (1.5ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
19
|
+
Migrating to InstallPose (20130308053038)
|
20
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
43
21
|
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
[1m[
|
22
|
+
Connecting to database specified by database.yml
|
23
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
24
|
+
[1m[35m (1.1ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
25
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
26
|
+
[1m[35m (1.5ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
27
|
+
Migrating to InstallPose (20130308053038)
|
28
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
29
|
+
[1m[35m (0.4ms)[0m CREATE TABLE "pose_assignments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "pose_word_id" integer NOT NULL, "posable_id" integer NOT NULL, "posable_type" varchar(40) NOT NULL)
|
30
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_pose_assignments_on_pose_word_id" ON "pose_assignments" ("pose_word_id")[0m
|
31
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_pose_assignments_on_posable_id" ON "pose_assignments" ("posable_id")
|
32
|
+
[1m[36m (0.1ms)[0m [1mCREATE TABLE "pose_words" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(80) NOT NULL) [0m
|
33
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_pose_words_on_text" ON "pose_words" ("text")
|
34
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130308053038')[0m
|
35
|
+
[1m[35m (1.0ms)[0m commit transaction
|
48
36
|
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
49
37
|
Connecting to database specified by database.yml
|
50
|
-
[1m[36m (
|
51
|
-
[1m[35m (
|
38
|
+
[1m[36m (1.5ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
39
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
40
|
+
[1m[36m (1.2ms)[0m [1mCREATE TABLE "pose_assignments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "pose_word_id" integer NOT NULL, "posable_id" integer NOT NULL, "posable_type" varchar(40) NOT NULL) [0m
|
41
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_pose_assignments_on_posable_id" ON "pose_assignments" ("posable_id")
|
42
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_pose_assignments_on_pose_word_id" ON "pose_assignments" ("pose_word_id")[0m
|
43
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "pose_words" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(80) NOT NULL)
|
44
|
+
[1m[36m (1.6ms)[0m [1mCREATE INDEX "index_pose_words_on_text" ON "pose_words" ("text")[0m
|
45
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
52
46
|
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
53
|
-
[1m[35m (0.1ms)[0m SELECT
|
47
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
48
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130308053038')[0m
|
49
|
+
Connecting to database specified by database.yml
|
50
|
+
Connecting to database specified by database.yml
|
51
|
+
Connecting to database specified by database.yml
|
52
|
+
Connecting to database specified by database.yml
|
53
|
+
Connecting to database specified by database.yml
|
54
|
+
[1m[36m (1.5ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
55
|
+
Migrating to InstallPose (20130308053038)
|
54
56
|
Migrating to CreatePosableOne (20130308054001)
|
57
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
55
58
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
56
|
-
[1m[35m (0.
|
59
|
+
[1m[35m (0.5ms)[0m CREATE TABLE "posable_ones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(255), "private" boolean)
|
57
60
|
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130308054001')[0m
|
58
61
|
[1m[35m (0.8ms)[0m commit transaction
|
59
62
|
Migrating to CreatePosableTwo (20130308054142)
|
60
63
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
61
|
-
[1m[35m (0.
|
64
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "posable_twos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(255), "private" boolean)
|
62
65
|
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130308054142')[0m
|
63
66
|
[1m[35m (0.7ms)[0m commit transaction
|
64
|
-
|
67
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
68
|
+
Connecting to database specified by database.yml
|
69
|
+
[1m[36m (1.4ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
70
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
71
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "posable_ones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(255), "private" boolean) [0m
|
72
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "posable_twos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(255), "private" boolean)
|
73
|
+
[1m[36m (1.0ms)[0m [1mDROP TABLE "pose_assignments"[0m
|
74
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "pose_assignments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "pose_word_id" integer NOT NULL, "posable_id" integer NOT NULL, "posable_type" varchar(40) NOT NULL)
|
75
|
+
[1m[36m (1.6ms)[0m [1mCREATE INDEX "index_pose_assignments_on_posable_id" ON "pose_assignments" ("posable_id")[0m
|
76
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_pose_assignments_on_pose_word_id" ON "pose_assignments" ("pose_word_id")
|
77
|
+
[1m[36m (0.9ms)[0m [1mDROP TABLE "pose_words"[0m
|
78
|
+
[1m[35m (0.7ms)[0m CREATE TABLE "pose_words" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(80) NOT NULL)
|
79
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_pose_words_on_text" ON "pose_words" ("text")[0m
|
80
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
81
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130308054142')[0m
|
82
|
+
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130308054001')
|
83
|
+
Connecting to database specified by database.yml
|
84
|
+
Connecting to database specified by database.yml
|
85
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
86
|
+
[1m[35m (1.1ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
87
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
88
|
+
[1m[35m (1.5ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
89
|
+
Migrating to InstallPose (20130308053038)
|
65
90
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
66
|
-
[1m[35m (
|
91
|
+
[1m[35m (2.0ms)[0m CREATE TABLE "pose_assignments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "word_id" integer NOT NULL, "posable_id" integer NOT NULL, "posable_type" varchar(40) NOT NULL)
|
67
92
|
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_pose_assignments_on_word_id" ON "pose_assignments" ("word_id")[0m
|
68
93
|
[1m[35m (0.1ms)[0m CREATE INDEX "index_pose_assignments_on_posable_id" ON "pose_assignments" ("posable_id")
|
69
94
|
[1m[36m (0.1ms)[0m [1mCREATE TABLE "pose_words" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(80) NOT NULL) [0m
|
70
95
|
[1m[35m (0.1ms)[0m CREATE INDEX "index_pose_words_on_text" ON "pose_words" ("text")
|
71
|
-
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('
|
72
|
-
[1m[35m (
|
73
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
74
|
-
Connecting to database specified by database.yml
|
75
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
96
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130308053038')[0m
|
97
|
+
[1m[35m (1.3ms)[0m commit transaction
|
76
98
|
Migrating to CreatePosableOne (20130308054001)
|
99
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
100
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "posable_ones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(255), "private" boolean)
|
101
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130308054001')[0m
|
102
|
+
[1m[35m (1.0ms)[0m commit transaction
|
77
103
|
Migrating to CreatePosableTwo (20130308054142)
|
78
|
-
Migrating to PoseInstall (20130308144915)
|
79
|
-
Migrating to CreateUsers (20130708084009)
|
80
|
-
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
81
104
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
82
|
-
[1m[35m (0.3ms)[0m CREATE TABLE "
|
83
|
-
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('
|
84
|
-
[1m[35m (
|
105
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "posable_twos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(255), "private" boolean)
|
106
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130308054142')[0m
|
107
|
+
[1m[35m (0.7ms)[0m commit transaction
|
85
108
|
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
86
109
|
Connecting to database specified by database.yml
|
87
|
-
[1m[36m (
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
[1m[35m (0.
|
93
|
-
[1m[36m (0.
|
110
|
+
[1m[36m (1.4ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
111
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
112
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "posable_ones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(255), "private" boolean) [0m
|
113
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "posable_twos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(255), "private" boolean)
|
114
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "pose_assignments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "word_id" integer NOT NULL, "posable_id" integer NOT NULL, "posable_type" varchar(40) NOT NULL) [0m
|
115
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_pose_assignments_on_posable_id" ON "pose_assignments" ("posable_id")
|
116
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_pose_assignments_on_word_id" ON "pose_assignments" ("word_id")[0m
|
117
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "pose_words" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(80) NOT NULL)
|
118
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_pose_words_on_text" ON "pose_words" ("text")[0m
|
119
|
+
[1m[35m (1.2ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
120
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
121
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
122
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130308054142')[0m
|
123
|
+
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130308053038')
|
124
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130308054001')[0m
|
94
125
|
Connecting to database specified by database.yml
|
95
|
-
[1m[36m (0.
|
96
|
-
[1m[35m (
|
126
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
127
|
+
[1m[35m (1.1ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
97
128
|
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
98
|
-
[1m[35m (
|
129
|
+
[1m[35m (1.5ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
130
|
+
Migrating to InstallPose (20130308053038)
|
131
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
132
|
+
[1m[35m (0.4ms)[0m CREATE TABLE "pose_assignments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "word_id" integer NOT NULL, "posable_id" integer NOT NULL, "posable_type" varchar(40) NOT NULL)
|
133
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_pose_assignments_on_word_id" ON "pose_assignments" ("word_id")[0m
|
134
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_pose_assignments_on_posable_id" ON "pose_assignments" ("posable_id")
|
135
|
+
[1m[36m (0.1ms)[0m [1mCREATE TABLE "pose_words" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(80) NOT NULL) [0m
|
136
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_pose_words_on_text" ON "pose_words" ("text")
|
137
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130308053038')[0m
|
138
|
+
[1m[35m (1.0ms)[0m commit transaction
|
99
139
|
Migrating to CreatePosableOne (20130308054001)
|
100
140
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
101
|
-
[1m[35m (0.3ms)[0m CREATE TABLE "posable_ones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(255), "private" boolean
|
141
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "posable_ones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(255), "private" boolean)
|
102
142
|
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130308054001')[0m
|
103
143
|
[1m[35m (0.7ms)[0m commit transaction
|
104
144
|
Migrating to CreatePosableTwo (20130308054142)
|
105
145
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
106
|
-
[1m[35m (0.
|
146
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "posable_twos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(255), "private" boolean)
|
107
147
|
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130308054142')[0m
|
108
|
-
[1m[35m (0.
|
109
|
-
Migrating to
|
110
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
111
|
-
[1m[35m (0.2ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)
|
112
|
-
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130708084009')[0m
|
113
|
-
[1m[35m (0.7ms)[0m commit transaction
|
114
|
-
Migrating to PoseInstall (20130716235926)
|
148
|
+
[1m[35m (0.6ms)[0m commit transaction
|
149
|
+
Migrating to PoseInstall (20130308144915)
|
115
150
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
116
|
-
[1m[35m (0.
|
117
|
-
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_pose_assignments_on_word_id" ON "pose_assignments" ("word_id")[0m
|
118
|
-
[1m[35m (0.1ms)[0m CREATE INDEX "index_pose_assignments_on_posable_id" ON "pose_assignments" ("posable_id")
|
119
|
-
[1m[36m (0.1ms)[0m [1mCREATE TABLE "pose_words" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(80) NOT NULL) [0m
|
120
|
-
[1m[35m (0.1ms)[0m CREATE INDEX "index_pose_words_on_text" ON "pose_words" ("text")
|
121
|
-
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130716235926')[0m
|
122
|
-
[1m[35m (0.7ms)[0m commit transaction
|
123
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
151
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
124
152
|
Connecting to database specified by database.yml
|
125
|
-
[1m[36m (
|
126
|
-
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
127
|
-
[1m[36m (1.1ms)[0m [1mCREATE TABLE "posable_ones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(255), "private" boolean, "user_id" integer) [0m
|
128
|
-
[1m[35m (0.8ms)[0m CREATE TABLE "posable_twos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(255), "private" boolean, "user_id" integer)
|
129
|
-
[1m[36m (0.9ms)[0m [1mCREATE TABLE "pose_assignments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "word_id" integer NOT NULL, "posable_id" integer NOT NULL, "posable_type" varchar(60) NOT NULL) [0m
|
130
|
-
[1m[35m (0.8ms)[0m CREATE INDEX "index_pose_assignments_on_posable_id" ON "pose_assignments" ("posable_id")
|
131
|
-
[1m[36m (0.6ms)[0m [1mCREATE INDEX "index_pose_assignments_on_word_id" ON "pose_assignments" ("word_id")[0m
|
132
|
-
[1m[35m (0.8ms)[0m CREATE TABLE "pose_words" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(80) NOT NULL)
|
133
|
-
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_pose_words_on_text" ON "pose_words" ("text")[0m
|
134
|
-
[1m[35m (0.7ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)
|
135
|
-
[1m[36m (0.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
136
|
-
[1m[35m (0.6ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
137
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
138
|
-
[1m[35m (0.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130716235926')
|
139
|
-
[1m[36m (0.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130308054001')[0m
|
140
|
-
[1m[35m (0.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130308054142')
|
141
|
-
[1m[36m (0.5ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130708084009')[0m
|
153
|
+
[1m[36m (1.4ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
142
154
|
Connecting to database specified by database.yml
|
143
|
-
[1m[36m (0.
|
144
|
-
[1m[35m (
|
145
|
-
[1m[36m (
|
146
|
-
|
155
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
156
|
+
[1m[35m (1.0ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
157
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
158
|
+
Connecting to database specified by database.yml
|
159
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
160
|
+
[1m[35m (1.1ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
161
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
162
|
+
[1m[35m (1.4ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
147
163
|
Migrating to CreatePosableOne (20130308054001)
|
148
164
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
149
|
-
[1m[35m (0.
|
165
|
+
[1m[35m (0.4ms)[0m CREATE TABLE "posable_ones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(255), "private" boolean)
|
150
166
|
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130308054001')[0m
|
151
167
|
[1m[35m (0.7ms)[0m commit transaction
|
152
168
|
Migrating to CreatePosableTwo (20130308054142)
|
153
169
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
154
|
-
[1m[35m (0.
|
170
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "posable_twos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(255), "private" boolean)
|
155
171
|
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130308054142')[0m
|
156
|
-
[1m[35m (0.6ms)[0m commit transaction
|
157
|
-
Migrating to CreateUsers (20130708084009)
|
158
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
159
|
-
[1m[35m (0.2ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))
|
160
|
-
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130708084009')[0m
|
161
172
|
[1m[35m (0.7ms)[0m commit transaction
|
162
|
-
Migrating to PoseInstall (
|
173
|
+
Migrating to PoseInstall (20130308144915)
|
163
174
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
164
|
-
[1m[35m (0.
|
165
|
-
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_pose_assignments_on_word_id" ON "pose_assignments" ("word_id")[0m
|
166
|
-
[1m[35m (0.1ms)[0m CREATE INDEX "index_pose_assignments_on_posable_id" ON "pose_assignments" ("posable_id")
|
167
|
-
[1m[36m (0.1ms)[0m [1mCREATE TABLE "pose_words" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(80) NOT NULL) [0m
|
168
|
-
[1m[35m (0.1ms)[0m CREATE INDEX "index_pose_words_on_text" ON "pose_words" ("text")
|
169
|
-
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130716235926')[0m
|
170
|
-
[1m[35m (0.8ms)[0m commit transaction
|
171
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
172
|
-
Connecting to database specified by database.yml
|
173
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
174
|
-
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
175
|
-
[1m[36m (2.5ms)[0m [1mCREATE TABLE "posable_ones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(255), "private" boolean, "user_id" integer) [0m
|
176
|
-
[1m[35m (1.0ms)[0m CREATE TABLE "posable_twos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(255), "private" boolean, "user_id" integer)
|
177
|
-
[1m[36m (0.7ms)[0m [1mCREATE TABLE "pose_assignments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "word_id" integer NOT NULL, "posable_id" integer NOT NULL, "posable_type" varchar(60) NOT NULL) [0m
|
178
|
-
[1m[35m (0.9ms)[0m CREATE INDEX "index_pose_assignments_on_posable_id" ON "pose_assignments" ("posable_id")
|
179
|
-
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_pose_assignments_on_word_id" ON "pose_assignments" ("word_id")[0m
|
180
|
-
[1m[35m (0.7ms)[0m CREATE TABLE "pose_words" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(80) NOT NULL)
|
181
|
-
[1m[36m (0.6ms)[0m [1mCREATE INDEX "index_pose_words_on_text" ON "pose_words" ("text")[0m
|
182
|
-
[1m[35m (0.8ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))
|
183
|
-
[1m[36m (0.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
184
|
-
[1m[35m (0.6ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
185
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
186
|
-
[1m[35m (0.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130716235926')
|
187
|
-
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130308054001')[0m
|
188
|
-
[1m[35m (0.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130308054142')
|
189
|
-
[1m[36m (0.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130708084009')[0m
|
175
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
190
176
|
Connecting to database specified by database.yml
|
191
|
-
[1m[36m (0.
|
192
|
-
[1m[35m (1.
|
193
|
-
[1m[36m (0.
|
194
|
-
|
195
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
177
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
178
|
+
[1m[35m (1.5ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
179
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
180
|
+
[1m[35m (1.5ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
196
181
|
Migrating to CreatePosableOne (20130308054001)
|
197
|
-
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
198
182
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
199
|
-
[1m[35m (
|
183
|
+
[1m[35m (0.4ms)[0m CREATE TABLE "posable_ones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(255), "private" boolean)
|
200
184
|
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130308054001')[0m
|
201
|
-
[1m[35m (
|
185
|
+
[1m[35m (0.8ms)[0m commit transaction
|
202
186
|
Migrating to CreatePosableTwo (20130308054142)
|
203
|
-
[1m[36m (0.
|
204
|
-
[1m[35m (0.3ms)[0m CREATE TABLE "posable_twos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(255), "private" boolean
|
187
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
188
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "posable_twos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(255), "private" boolean)
|
205
189
|
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130308054142')[0m
|
206
|
-
[1m[35m (
|
190
|
+
[1m[35m (1.0ms)[0m commit transaction
|
207
191
|
Migrating to PoseInstall (20130308144915)
|
208
192
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
209
|
-
[1m[35m (0.
|
193
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "pose_assignments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "word_id" integer NOT NULL, "posable_id" integer NOT NULL, "posable_type" varchar(40) NOT NULL)
|
210
194
|
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_pose_assignments_on_word_id" ON "pose_assignments" ("word_id")[0m
|
211
195
|
[1m[35m (0.1ms)[0m CREATE INDEX "index_pose_assignments_on_posable_id" ON "pose_assignments" ("posable_id")
|
212
196
|
[1m[36m (0.1ms)[0m [1mCREATE TABLE "pose_words" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(80) NOT NULL) [0m
|
213
197
|
[1m[35m (0.1ms)[0m CREATE INDEX "index_pose_words_on_text" ON "pose_words" ("text")
|
214
198
|
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130308144915')[0m
|
215
|
-
[1m[35m (0.
|
216
|
-
Migrating to CreateUsers (20130708084009)
|
217
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
218
|
-
[1m[35m (0.4ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))
|
219
|
-
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130708084009')[0m
|
220
|
-
[1m[35m (0.6ms)[0m commit transaction
|
199
|
+
[1m[35m (0.9ms)[0m commit transaction
|
221
200
|
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
222
201
|
Connecting to database specified by database.yml
|
223
|
-
[1m[36m (
|
202
|
+
[1m[36m (1.5ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
224
203
|
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
225
|
-
[1m[36m (1.1ms)[0m [1mCREATE TABLE "posable_ones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(255), "private" boolean
|
226
|
-
[1m[35m (0.8ms)[0m CREATE TABLE "posable_twos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(255), "private" boolean
|
227
|
-
[1m[36m (0.8ms)[0m [1mCREATE TABLE "pose_assignments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "word_id" integer NOT NULL, "posable_id" integer NOT NULL, "posable_type" varchar(
|
204
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "posable_ones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(255), "private" boolean) [0m
|
205
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "posable_twos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(255), "private" boolean)
|
206
|
+
[1m[36m (0.8ms)[0m [1mCREATE TABLE "pose_assignments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "word_id" integer NOT NULL, "posable_id" integer NOT NULL, "posable_type" varchar(40) NOT NULL) [0m
|
207
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_pose_assignments_on_posable_id" ON "pose_assignments" ("posable_id")
|
208
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_pose_assignments_on_word_id" ON "pose_assignments" ("word_id")[0m
|
209
|
+
[1m[35m (1.0ms)[0m CREATE TABLE "pose_words" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(80) NOT NULL)
|
210
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_pose_words_on_text" ON "pose_words" ("text")[0m
|
211
|
+
[1m[35m (0.7ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
212
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
213
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
214
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130308144915')[0m
|
215
|
+
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130308054001')
|
216
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130308054142')[0m
|
217
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
218
|
+
Migrating to CreateUsers (20130708084009)
|
219
|
+
[1m[35m (0.2ms)[0m begin transaction
|
220
|
+
[1m[36m (0.6ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) [0m
|
221
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20130708084009"]]
|
222
|
+
[1m[36m (5.5ms)[0m [1mcommit transaction[0m
|
223
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
224
|
+
[1m[36m (1.3ms)[0m [1mCREATE TABLE "posable_ones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(255), "private" boolean) [0m
|
225
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "posable_twos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(255), "private" boolean)
|
226
|
+
[1m[36m (0.8ms)[0m [1mCREATE TABLE "pose_assignments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "word_id" integer NOT NULL, "posable_id" integer NOT NULL, "posable_type" varchar(40) NOT NULL) [0m
|
228
227
|
[1m[35m (0.8ms)[0m CREATE INDEX "index_pose_assignments_on_posable_id" ON "pose_assignments" ("posable_id")
|
229
|
-
[1m[36m (
|
230
|
-
[1m[35m (0.
|
228
|
+
[1m[36m (1.6ms)[0m [1mCREATE INDEX "index_pose_assignments_on_word_id" ON "pose_assignments" ("word_id")[0m
|
229
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "pose_words" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(80) NOT NULL)
|
231
230
|
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_pose_words_on_text" ON "pose_words" ("text")[0m
|
232
|
-
[1m[35m (
|
233
|
-
[1m[36m (
|
234
|
-
[1m[35m (0.
|
231
|
+
[1m[35m (1.0ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))
|
232
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
233
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
235
234
|
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
236
|
-
[1m[35m (
|
237
|
-
[1m[36m (0.
|
238
|
-
[1m[35m (
|
239
|
-
[1m[36m (0.
|
240
|
-
|
241
|
-
[1m[
|
242
|
-
[1m[
|
243
|
-
[1m[
|
244
|
-
[1m[
|
245
|
-
[1m[
|
246
|
-
[1m[
|
247
|
-
[1m[
|
248
|
-
[1m[
|
249
|
-
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_pose_words_on_text" ON "pose_words" ("text")[0m
|
235
|
+
[1m[35m (2.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130708084009')
|
236
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130308054001')[0m
|
237
|
+
[1m[35m (1.0ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130308054142')
|
238
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130308144915')[0m
|
239
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
240
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
241
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "posable_ones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(255), "private" boolean) [0m
|
242
|
+
[1m[35m (1.0ms)[0m CREATE TABLE "posable_twos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(255), "private" boolean)
|
243
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "pose_assignments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "word_id" integer NOT NULL, "posable_id" integer NOT NULL, "posable_type" varchar(40) NOT NULL) [0m
|
244
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_pose_assignments_on_posable_id" ON "pose_assignments" ("posable_id")
|
245
|
+
[1m[36m (1.4ms)[0m [1mCREATE INDEX "index_pose_assignments_on_word_id" ON "pose_assignments" ("word_id")[0m
|
246
|
+
[1m[35m (1.1ms)[0m CREATE TABLE "pose_words" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(80) NOT NULL)
|
247
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_pose_words_on_text" ON "pose_words" ("text")[0m
|
250
248
|
[1m[35m (0.9ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))
|
251
|
-
[1m[36m (
|
252
|
-
[1m[35m (
|
249
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
250
|
+
[1m[35m (1.6ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
253
251
|
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
254
|
-
[1m[35m (
|
255
|
-
[1m[36m (0.
|
256
|
-
[1m[35m (0.
|
257
|
-
|
258
|
-
|
259
|
-
|
252
|
+
[1m[35m (1.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130708084009')
|
253
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130308054001')[0m
|
254
|
+
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130308054142')
|
255
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130308144915')[0m
|
256
|
+
[1m[36m (1.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
257
|
+
[1m[35m (1.0ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
258
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
259
|
+
Migrating to CreatePosableOne (20130308054001)
|
260
|
+
[1m[35m (0.1ms)[0m begin transaction
|
261
|
+
[1m[36m (0.7ms)[0m [1mCREATE TABLE "posable_ones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(255), "private" boolean, "user_id" integer) [0m
|
262
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20130308054001"]]
|
263
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
264
|
+
Migrating to CreatePosableTwo (20130308054142)
|
265
|
+
[1m[35m (0.1ms)[0m begin transaction
|
266
|
+
[1m[36m (0.5ms)[0m [1mCREATE TABLE "posable_twos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(255), "private" boolean, "user_id" integer) [0m
|
267
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20130308054142"]]
|
268
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
269
|
+
Migrating to CreateUsers (20130708084009)
|
270
|
+
[1m[35m (0.1ms)[0m begin transaction
|
271
|
+
[1m[36m (0.4ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) [0m
|
272
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20130708084009"]]
|
273
|
+
[1m[36m (1.2ms)[0m [1mcommit transaction[0m
|
274
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
275
|
+
[1m[36m (1.4ms)[0m [1mCREATE TABLE "posable_ones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(255), "private" boolean, "user_id" integer) [0m
|
276
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "posable_twos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(255), "private" boolean, "user_id" integer)
|
277
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) [0m
|
278
|
+
[1m[35m (1.0ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
279
|
+
[1m[36m (1.6ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
280
|
+
[1m[35m (0.2ms)[0m SELECT version FROM "schema_migrations"
|
281
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130708084009')[0m
|
282
|
+
[1m[35m (1.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130308054001')
|
283
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130308054142')[0m
|
284
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
285
|
+
Migrating to PoseInstall (20130308144915)
|
286
|
+
[1m[35m (0.2ms)[0m begin transaction
|
287
|
+
[1m[36m (0.7ms)[0m [1mCREATE TABLE "pose_assignments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "word_id" integer NOT NULL, "posable_id" integer NOT NULL, "posable_type" varchar(60) NOT NULL) [0m
|
288
|
+
[1m[35m (0.2ms)[0m CREATE INDEX "index_pose_assignments_on_word_id" ON "pose_assignments" ("word_id")
|
289
|
+
[1m[36m (0.2ms)[0m [1mCREATE INDEX "index_pose_assignments_on_posable_id" ON "pose_assignments" ("posable_id")[0m
|
290
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "pose_words" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(80) NOT NULL)
|
291
|
+
[1m[36m (0.6ms)[0m [1mCREATE INDEX "index_pose_words_on_text" ON "pose_words" ("text")[0m
|
292
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20130308144915"]]
|
293
|
+
[1m[36m (1.0ms)[0m [1mcommit transaction[0m
|
294
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
295
|
+
[1m[36m (1.3ms)[0m [1mCREATE TABLE "posable_ones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(255), "private" boolean, "user_id" integer) [0m
|
296
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "posable_twos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(255), "private" boolean, "user_id" integer)
|
297
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "pose_assignments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "word_id" integer NOT NULL, "posable_id" integer NOT NULL, "posable_type" varchar(60) NOT NULL) [0m
|
298
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_pose_assignments_on_posable_id" ON "pose_assignments" ("posable_id")
|
299
|
+
[1m[36m (1.3ms)[0m [1mCREATE INDEX "index_pose_assignments_on_word_id" ON "pose_assignments" ("word_id")[0m
|
300
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "pose_words" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar(80) NOT NULL)
|
301
|
+
[1m[36m (1.0ms)[0m [1mCREATE INDEX "index_pose_words_on_text" ON "pose_words" ("text")[0m
|
302
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))
|
303
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
304
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
305
|
+
[1m[36m (0.2ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
306
|
+
[1m[35m (1.0ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130708084009')
|
307
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130308054001')[0m
|
308
|
+
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130308054142')
|
309
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130308144915')[0m
|