OSDN Git Service

import all source code
[pettanr/pettanr.git] / db / migrate / 20111208235818_create_speach_balloons.rb
1 class CreateSpeachBalloons < ActiveRecord::Migration
2   def change
3     create_table :speach_balloons do |t|
4       t.string :name, :null => false
5       t.integer :tail_limit, :null => false, :default => 1
6       t.integer :border_limit, :null => false, :default => 1
7
8       t.timestamps
9     end
10   end
11 end