annotate db/migrate/20120826180414_create_pastes.rb @ 179:b1aa7865bc7f
Added paste id data to markup.
author |
Edho Arief <edho@myconan.net> |
date |
Fri, 01 Feb 2013 22:37:06 +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
|