File: cli-project-vars.txt

package info (click to toggle)
golang-ariga-atlas 0.7.2-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 5,676 kB
  • sloc: javascript: 592; sql: 404; makefile: 10
file content (35 lines) | stat: -rw-r--r-- 729 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
! atlas schema apply --env local --auto-approve
stderr 'Error: missing value for required variable "user_status_default"'

atlas schema apply --env local --auto-approve --var user_status_default=hello
cmpshow users expected.sql

-- atlas.hcl --
variable "user_status_default" {
    type = string
}
env "local" {
    url = "URL"
    src = "./1.hcl"
    def_val = var.user_status_default
}
-- 1.hcl --
variable "def_val" {
    type = string
}
table "users" {
  schema = schema.main
  column "id" {
    null = false
    type = int
  }
  column "status" {
    null = true
    type = text
    default = var.def_val
  }
}
schema "main" {
}
-- expected.sql --
CREATE TABLE `users` (`id` int NOT NULL, `status` text NULL DEFAULT 'hello')