diff db/schema.rb @ 419:e34e0de34b65

Prevent creating stupid long misc fields
author nanaya <me@myconan.net>
date Thu, 17 Sep 2015 01:23:02 +0900
parents 080dd141898c
children
line wrap: on
line diff
--- a/db/schema.rb	Thu Sep 17 01:13:14 2015 +0900
+++ b/db/schema.rb	Thu Sep 17 01:23:02 2015 +0900
@@ -11,7 +11,7 @@
 #
 # It's strongly recommended that you check this file into your version control system.
 
-ActiveRecord::Schema.define(version: 20150914054154) do
+ActiveRecord::Schema.define(version: 20150916161622) do
 
   create_table "pastes", force: :cascade do |t|
     t.string   "ip",         limit: 50,  null: false
@@ -19,9 +19,9 @@
     t.string   "paste_hash", limit: 150, null: false
     t.datetime "created_at",             null: false
     t.datetime "updated_at",             null: false
-    t.string   "key"
-    t.string   "secret"
-    t.string   "language"
+    t.string   "key",        limit: 100
+    t.string   "secret",     limit: 100
+    t.string   "language",   limit: 100
   end
 
   add_index "pastes", ["ip", "paste_hash"], name: "index_pastes_on_ip_and_hash", unique: true, using: :btree