aboutsummaryrefslogtreecommitdiff
path: root/models/config.rb
diff options
context:
space:
mode:
authorJohn Ankarström <john@ankarstrom.se>2021-03-02 00:10:03 +0100
committerJohn Ankarström <john@ankarstrom.se>2021-03-02 00:10:03 +0100
commit7640f27b9e183c6e9a00249c352e3515d3f90c75 (patch)
treee58d598bbaa577b541559b9bd0380ba2d4665264 /models/config.rb
parent4e18684bb21564ee1d9c616b9cf1eece3a241f8c (diff)
downloadcomb-7640f27b9e183c6e9a00249c352e3515d3f90c75.tar.gz
Rename db directory to models
Diffstat (limited to 'models/config.rb')
-rw-r--r--models/config.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/models/config.rb b/models/config.rb
new file mode 100644
index 0000000..55b4106
--- /dev/null
+++ b/models/config.rb
@@ -0,0 +1,17 @@
+class Config < ActiveRecord::Base
+ self.table_name = 'config'
+ validates_presence_of :title
+ validates_presence_of :timezone
+ validates_presence_of :postsperpage
+end
+
+class CreateConfigTable < ActiveRecord::Migration[6.0]
+ def change
+ create_table :config do |t|
+ t.string :title, null: false
+ t.string :subtitle
+ t.string :timezone, null: false
+ t.integer :postsperpage, null: false
+ end
+ end
+end