mintbooru/db/migrate/20210912174052_create_posts.rb

15 lines
288 B
Ruby

# frozen_string_literal: true
class CreatePosts < ActiveRecord::Migration[7.0]
def change
create_table :posts do |t|
t.string :title, null: false
t.text :description, null: false, default: ''
t.text :image_data, null: false
t.timestamps
end
end
end