This repository has been archived on 2024-08-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
redstoner.com/db/migrate/01_create_roles.rb
2014-04-04 01:08:17 +02:00

8 lines
153 B
Ruby

class CreateRoles < ActiveRecord::Migration
def change
create_table :roles do |t|
t.string :name
t.integer :value
end
end
end