Mercurial > zeropaste
comparison db/migrate/20120826180414_create_pastes.rb @ 2:42de15334db1
Added the pastes.
author | Edho Arief <edho@myconan.net> |
---|---|
date | Sun, 26 Aug 2012 11:28:23 -0700 |
parents | |
children | 682abad78313 |
comparison
equal
deleted
inserted
replaced
1:49c0949ee47e | 2:42de15334db1 |
---|---|
1 class CreatePastes < ActiveRecord::Migration | |
2 def change | |
3 create_table :pastes do |t| | |
4 t.string :ip, :null => false | |
5 t.text :paste, :null => false | |
6 t.string :hash, :null => false | |
7 | |
8 t.timestamps | |
9 end | |
10 add_index :pastes, [:ip, :hash], :unique => true | |
11 end | |
12 end |