use lib '.'; use Moblo::Schema; my $schema = Moblo::Schema->connect('dbi:SQLite:moblo.db'); $schema->deploy(); #### sqlite> .schema CREATE TABLE posts ( id INTEGER PRIMARY KEY NOT NULL, author text NOT NULL, title text NOT NULL, content text NOT NULL, date_published datetime NOT NULL );