Files
Dalan/db/migrate/20190318133453_create_permissions.rb
2026-08-13 19:56:46 +03:30

14 lines
310 B
Ruby

class CreatePermissions < ActiveRecord::Migration[5.2]
def change
create_table :permissions do |t|
t.string :action, null: false
t.string :role, null: false
t.string :verb, null: false
t.string :path, null: false
t.timestamps
end
end
end