Red.git | lib/Red/AST/ | CreateColumn.rakumod
use Red::AST;
#| Represents an alter table add column
unit class Red::AST::CreateColumn does Red::AST;
has Str $.table is required;
has Str $.name is required;
has Str $.type is required;
has Bool $.nullable;
has Bool $.pk;
has Bool $.unique;
has Str $.ref-table;
has Str $.ref-col;
method find-column-name {}
method args {}
method returns {}