Added trade unions

This commit is contained in:
a-ill
2023-08-17 12:01:26 +03:00
parent 8e88a5a895
commit 73ece83c60
63 changed files with 1402 additions and 55 deletions

View File

@@ -0,0 +1,20 @@
module CreateTableRoles
import SearchLight.Migrations: create_table, column, primary_key, add_index, drop_table
function up()
create_table(:roles) do
[
primary_key()
column(:name, :string, limit = 100)
]
end
add_index(:roles, :name)
end
function down()
drop_table(:roles)
end
end