annotate db/migrate/20120826180414_create_pastes.rb @ 61:d32e532a8f1a
Added link to source repository.
author |
Edho Arief <edho@myconan.net> |
date |
Thu, 04 Oct 2012 09:05:05 +0700 |
parents |
42de15334db1 |
children |
682abad78313 |
rev |
line source |
2
|
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
|