rosa-build/db/migrate/20111012222824_create_right...

15 lines
216 B
Ruby

class CreateRights < ActiveRecord::Migration
def self.up
create_table :rights do |t|
t.integer :id
t.string :name
t.timestamps
end
end
def self.down
drop_table :rights
end
end