mirror of
https://github.com/Neetpone/foalfetch.git
synced 2025-02-08 18:06:43 +01:00
35 lines
996 B
Ruby
35 lines
996 B
Ruby
# frozen_string_literal: true
|
|
# == Schema Information
|
|
#
|
|
# Table name: stories
|
|
#
|
|
# id :bigint not null, primary key
|
|
# color :integer
|
|
# completion_status :text
|
|
# content_rating :text
|
|
# cover_image :text
|
|
# date_modified :datetime
|
|
# date_published :datetime not null
|
|
# date_updated :datetime
|
|
# description_html :text
|
|
# num_comments :integer default(0), not null
|
|
# num_views :integer default(0), not null
|
|
# num_words :integer not null
|
|
# prequel :integer
|
|
# rating :integer not null
|
|
# short_description :text
|
|
# title :text not null
|
|
# total_num_views :integer default(0), not null
|
|
# author_id :bigint not null
|
|
#
|
|
# Indexes
|
|
#
|
|
# index_stories_on_author_id (author_id)
|
|
#
|
|
require 'test_helper'
|
|
|
|
class StoryTest < ActiveSupport::TestCase
|
|
# test "the truth" do
|
|
# assert true
|
|
# end
|
|
end
|