OSDN Git Service

0a86e6af35327ea3c3e7573a101b28be2b10d33c
[pettanr/pettanr.git] / db / migrate / 20121111060613_create_providers.rb
1 class CreateProviders < ActiveRecord::Migration
2   def change
3     create_table :providers do |t|
4       t.integer :provider_status_id, :null => false, :default => 0
5       t.string :name, :null => false, :limit => 50
6       t.string :caption, :null => false, :limit => 30
7       t.string :url, :null => false
8       t.string :description, :null => false
9       t.string :demander_url, :null => false
10
11       t.timestamps
12     end
13   end
14 end