base_photo_app/db/migrate/20170130092928_create_share_images.rb

14 lines
270 B
Ruby

class CreateShareImages < ActiveRecord::Migration
def change
create_table :share_images do |t|
t.string :title
t.string :slug
t.string :password
t.text :description
t.date :expiration
t.timestamps null: false
end
end
end