You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

post.rb 92B

1234567
  1. require 'sequel'
  2. module VLV
  3. class Post < Sequel::Model
  4. many_to_one :thread
  5. end
  6. end