Skip to content

Commit

Permalink
test for table
Browse files Browse the repository at this point in the history
  • Loading branch information
yuiliangchen committed Sep 30, 2021
1 parent 3cf2ea3 commit 6cf86e3
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions Table 50101 Course.al
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
table 50101 Course
{
DataClassification = ToBeClassified;

fields
{
field(10; Code; Code[10])
{
DataClassification = ToBeClassified;

}
field(20; Name; Text[30])
{
DataClassification = ToBeClassified;
}
field(40; Type; Option)
{
DataClassification = ToBeClassified;
OptionMembers = "Instructor Led","E-Learning","Remote Training"
}
}
keys
{
key(PK; Code)
{
Clustered = true;
}
}

var
myInt: Integer;

trigger OnInsert()
begin

end;

trigger OnModify()
begin

end;

trigger OnDelete()
begin

end;

trigger OnRename()
begin

end;

}

0 comments on commit 6cf86e3

Please sign in to comment.