1ba35ed726
add rights to administrate the plugin
9 lines
133 B
Ruby
9 lines
133 B
Ruby
Sequel.migration do
|
|
change do
|
|
create_table(:admins) do
|
|
primary_key :id
|
|
String :user, null: false
|
|
end
|
|
end
|
|
end
|