lib/ronin/database/migrations/create_passwords_table.rb in ronin-1.0.0 vs lib/ronin/database/migrations/create_passwords_table.rb in ronin-1.1.0.rc1
- old
+ new
@@ -24,10 +24,10 @@
module Migrations
migration(:create_passwords_table) do
up do
create_table :ronin_passwords do
column :id, Integer, :serial => true
- column :clear_text, String, :not_null => true
+ column :clear_text, String, :length => 256, :not_null => true
end
create_index :ronin_passwords, :clear_text, :unique => true
end