aboutsummaryrefslogtreecommitdiff
path: root/interfaces/ruby/models/post.rb
diff options
context:
space:
mode:
Diffstat (limited to 'interfaces/ruby/models/post.rb')
-rw-r--r--interfaces/ruby/models/post.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/interfaces/ruby/models/post.rb b/interfaces/ruby/models/post.rb
new file mode 100644
index 0000000..1d44051
--- /dev/null
+++ b/interfaces/ruby/models/post.rb
@@ -0,0 +1,18 @@
+class Post < ActiveRecord::Base
+ has_many :comments
+ has_many :tags, through: :post_tag_links
+
+ validates_presence_of :title
+ validates_presence_of :body
+end
+
+class CreatePostTable < ActiveRecord::Migration[6.0]
+ def change
+ create_table :posts do |t|
+ t.string :title, null: false
+ t.string :body, null: false
+ t.boolean :locked, default: false
+ t.timestamps
+ end
+ end
+end