We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb51d13 commit 379acb0Copy full SHA for 379acb0
migrations/20180907232401_default_theme.js
@@ -0,0 +1,6 @@
1
+exports.up = knex =>
2
+ knex.schema.table('settings', (table) => {
3
+ table.string('theme').defaultTo('darcula').alter();
4
+ });
5
+
6
+exports.down = () => Promise.resolve();
0 commit comments