Skip to content

Commit

Permalink
migration: add v1.platform (#565)
Browse files Browse the repository at this point in the history
  • Loading branch information
vrmiguel authored Dec 18, 2023
1 parent 71f1dcd commit d223578
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions registry/migrations/20231218173736_add-v1-platform.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
CREATE TABLE v1.platform (
id SERIAL PRIMARY KEY,
platform_name VARCHAR(255) NOT NULL
);

INSERT INTO v1.platform (platform_name) VALUES ('linux/amd64');
INSERT INTO v1.platform (platform_name) VALUES ('linux/arm64');

0 comments on commit d223578

Please sign in to comment.