This repository has been archived on 2024-08-27. You can view files and clone it, but cannot push or open issues or pull requests.
redstoner.com/db/migrate/20140617183701_create_roles.rb

9 lines
154 B
Ruby

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