spec/dummy/db/schema.rb in iugusdk-1.0.0.alpha.3 vs spec/dummy/db/schema.rb in iugusdk-1.0.0.alpha.4
- old
+ new
@@ -9,11 +9,11 @@
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
# you'll amass, the slower it'll run and the greater likelihood for issues).
#
# It's strongly recommended to check this file into your version control system.
-ActiveRecord::Schema.define(:version => 20120803172545) do
+ActiveRecord::Schema.define(:version => 20121108115535) do
create_table "account_domains", :force => true do |t|
t.integer "account_id"
t.string "url"
t.boolean "verified"
@@ -35,9 +35,19 @@
t.datetime "updated_at", :null => false
t.string "name"
t.integer "subscription_id"
t.string "subdomain"
t.string "api_token"
+ end
+
+ create_table "api_tokens", :force => true do |t|
+ t.string "token"
+ t.string "description"
+ t.string "api_type"
+ t.integer "tokenable_id"
+ t.string "tokenable_type"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
end
create_table "delayed_jobs", :force => true do |t|
t.integer "priority", :default => 0
t.integer "attempts", :default => 0