2020-11-23 15:35:03 +08:00
|
|
|
# == Schema Information
|
|
|
|
|
#
|
|
|
|
|
# Table name: system_update_notices
|
|
|
|
|
#
|
|
|
|
|
# id :integer not null, primary key
|
|
|
|
|
# subject :string(255)
|
|
|
|
|
# notes :text(65535)
|
|
|
|
|
# start_time :datetime
|
|
|
|
|
# end_time :datetime
|
|
|
|
|
# created_at :datetime not null
|
|
|
|
|
# updated_at :datetime not null
|
|
|
|
|
# notice_type :integer
|
|
|
|
|
#
|
|
|
|
|
|
2020-03-09 00:40:16 +08:00
|
|
|
class SystemUpdateNotice < ApplicationRecord
|
|
|
|
|
end
|