mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
13 lines
269 B
Ruby
13 lines
269 B
Ruby
# == Schema Information
|
|
#
|
|
# Table name: articles
|
|
#
|
|
# id :bigint(8) not null, primary key
|
|
# title :string
|
|
# text :text
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
#
|
|
class Article < ApplicationRecord
|
|
end
|