# HG changeset patch # User nanaya # Date 1442420582 -32400 # Node ID e34e0de34b6549b0ef546cd82c432c3e650548c6 # Parent a69dd2d379508df28bb88fd2265d775f578a4c9d Prevent creating stupid long misc fields diff -r a69dd2d37950 -r e34e0de34b65 db/migrate/20150916161622_strict_character_lengths.rb --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/db/migrate/20150916161622_strict_character_lengths.rb Thu Sep 17 01:23:02 2015 +0900 @@ -0,0 +1,9 @@ +class StrictCharacterLengths < ActiveRecord::Migration + def change + change_table :pastes do |t| + t.change :key, :string, :limit => 100 + t.change :secret, :string, :limit => 100 + t.change :language, :string, :limit => 100 + end + end +end diff -r a69dd2d37950 -r e34e0de34b65 db/schema.rb --- 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