OSDN Git Service

add Picture
[pettanr/pettanr.git] / db / migrate / 20120701101503_create_standard_licenses.rb
1 class CreateStandardLicenses < ActiveRecord::Migration
2   def change
3     create_table :standard_licenses do |t|
4       t.column :license_id, :integer, :null => false, :default => 0
5       t.column :artist_name, :string, :null => false, :default => 'unknown'
6
7       t.timestamps
8     end
9   end
10 end