Skip to content

Instantly share code, notes, and snippets.

@hugoerg56
Created September 18, 2012 15:26
Show Gist options
  • Save hugoerg56/3743753 to your computer and use it in GitHub Desktop.
Save hugoerg56/3743753 to your computer and use it in GitHub Desktop.
db:schema:load run
Hugo-Rincons-MacBook-Air:FeedMob hugo$ rake db:schema:load
-- create_table("order_statuses", {:force=>true})
NOTICE: CREATE TABLE will create implicit sequence "order_statuses_id_seq" for serial column "order_statuses.id"
NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index "order_statuses_pkey" for table "order_statuses"
-> 0.0383s
-- create_table("orders", {:force=>true})
NOTICE: CREATE TABLE will create implicit sequence "orders_id_seq" for serial column "orders.id"
NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index "orders_pkey" for table "orders"
-> 0.0074s
-- create_table("products", {:force=>true})
NOTICE: CREATE TABLE will create implicit sequence "products_id_seq" for serial column "products.id"
NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index "products_pkey" for table "products"
-> 0.0107s
-- create_table("question_types", {:id=>false, :force=>true})
-> 0.0028s
-- create_table("surveys", {:id=>false, :force=>true})
-> 0.0047s
-- create_table("users", {:id=>false, :force=>true})
-> 0.0127s
-- add_index("users", ["active"], {:name=>"index_users_on_active"})
-> 0.0078s
-- initialize_schema_migrations_table()
-> 0.0007s
-- assume_migrated_upto_version(20120417201524, ["db/migrate"])
-> 0.0012s
Hugo-Rincons-MacBook-Air:FeedMob hugo$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment