From 7640f27b9e183c6e9a00249c352e3515d3f90c75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Ankarstr=C3=B6m?= Date: Tue, 2 Mar 2021 00:10:03 +0100 Subject: Rename db directory to models --- models/config.rb | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 models/config.rb (limited to 'models/config.rb') 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 -- cgit v1.2.3