Farmbot-Web-App/db/migrate/20190419052844_create_global_bulletin.rb

14 lines
284 B
Ruby
Raw Normal View History

2019-04-19 00:08:15 -06:00
class CreateGlobalBulletin < ActiveRecord::Migration[5.2]
def change
create_table :global_bulletins do |t|
t.string :href
2019-04-19 13:15:08 -06:00
t.string :href_label
2019-04-19 00:08:15 -06:00
t.string :slug
2019-04-19 11:56:45 -06:00
t.string :title
2019-04-19 00:08:15 -06:00
t.string :type
2019-04-19 13:15:08 -06:00
t.text :content
2019-04-19 00:08:15 -06:00
t.timestamps
end
end
end