github.com/docker/compose-on-kubernetes@v0.5.0/samples/db/words.sql (about)

     1  CREATE TABLE nouns (word TEXT NOT NULL);
     2  CREATE TABLE verbs (word TEXT NOT NULL);
     3  CREATE TABLE adjectives (word TEXT NOT NULL);
     4  
     5  INSERT INTO nouns(word) VALUES
     6    ('dead bødy'),
     7    ('elephant'),
     8    ('gø language'),
     9    ('laptøp'),
    10    ('cøntainer'),
    11    ('micrø-service'),
    12    ('turtle'),
    13    ('whale'),
    14    ('gøpher'),
    15    ('møby døck'),
    16    ('server'),
    17    ('bicycle'),
    18    ('viking'),
    19    ('mermaid'),
    20    ('fjørd'),
    21    ('legø'),
    22    ('flødebolle'),
    23    ('smørrebrød');
    24  
    25  INSERT INTO verbs(word) VALUES
    26    ('will drink'),
    27    ('smashes'),
    28    ('smøkes'),
    29    ('eats'),
    30    ('walks tøwards'),
    31    ('løves'),
    32    ('helps'),
    33    ('pushes'),
    34    ('debugs'),
    35    ('invites'),
    36    ('hides'),
    37    ('will ship');
    38  
    39  INSERT INTO adjectives(word) VALUES
    40    ('the exquisite'),
    41    ('a pink'),
    42    ('the røtten'),
    43    ('a red'),
    44    ('the fløating'),
    45    ('a brøken'),
    46    ('a shiny'),
    47    ('the pretty'),
    48    ('the impressive'),
    49    ('an awesøme'),
    50    ('the famøus'),
    51    ('a gigantic'),
    52    ('the gløriøus'),
    53    ('the nørdic'),
    54    ('the welcøming'),
    55    ('the deliciøus');