Mercurial > zeropaste
comparison db/migrate/20120905072325_set_limit_on_paste.rb @ 463:4608d12ebe03
Sync database
author | nanaya <me@nanaya.pro> |
---|---|
date | Mon, 10 Dec 2018 02:35:08 +0900 |
parents | 682abad78313 |
children | d2ef59c9a4b4 |
comparison
equal
deleted
inserted
replaced
462:e8d6c631a55b | 463:4608d12ebe03 |
---|---|
1 # Reduced size as needed. | 1 # Reduced size as needed. |
2 class SetLimitOnPaste < ActiveRecord::Migration | 2 class SetLimitOnPaste < ActiveRecord::Migration[4.2] |
3 def change | 3 def change |
4 change_table :pastes do |t| | 4 change_table :pastes do |t| |
5 t.change :ip, :string, :limit => 50 | 5 t.change :ip, :string, :limit => 50 |
6 t.change :paste_hash, :string, :limit => 150 | 6 t.change :paste_hash, :string, :limit => 150 |
7 end | 7 end |