Mercurial > zeropaste
diff db/migrate/20150916161622_strict_character_lengths.rb @ 419:e34e0de34b65
Prevent creating stupid long misc fields
author | nanaya <me@myconan.net> |
---|---|
date | Thu, 17 Sep 2015 01:23:02 +0900 |
parents | |
children | 4608d12ebe03 |
line wrap: on
line diff
--- /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