Skip to content

Instantly share code, notes, and snippets.

@cjauvin
Created December 11, 2012 22:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cjauvin/4262959 to your computer and use it in GitHub Desktop.
Save cjauvin/4262959 to your computer and use it in GitHub Desktop.
create table ubuntu (
id serial primary key,
adjective text,
animal text,
version text
);
insert into ubuntu (adjective, animal, version)
values ('Warty', 'Warthog', '4.10');
insert into ubuntu (adjective, animal, version)
values ('Hoary', 'Hedgehog', '5.04');
insert into ubuntu (adjective, animal, version)
values ('Breezy', 'Badger', '5.10');
-- ...for more: https://wiki.ubuntu.com/DevelopmentCodeNames
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment