11 lines
206 B
Ruby
11 lines
206 B
Ruby
Sequel.migration do
|
|
change do
|
|
create_table(:users) do
|
|
primary_key :id
|
|
String :name, null: false, unique: true
|
|
TrueClass :admin
|
|
column :groups, "text[]"
|
|
end
|
|
end
|
|
end
|