OSDN Git Service

import all source code
[pettanr/pettanr.git] / db / migrate / 20111206095746_create_artists.rb
1 class CreateArtists < ActiveRecord::Migration
2   def change
3     create_table :artists do |t|
4       t.string :email\r
5       t.string :name\r
6       t.string :homepage_url\r
7       t.string :api_url\r
8       t.integer :default_lisence_id\r
9       t.timestamp :crowled_at\r
10
11       t.timestamps
12     end
13   end
14 end