1
0
mirror of https://github.com/funamitech/mastodon synced 2024-11-23 22:57:05 +09:00
YuruToot/db/migrate/20170330163835_create_imports.rb

14 lines
268 B
Ruby
Raw Permalink Normal View History

# frozen_string_literal: true
class CreateImports < ActiveRecord::Migration[5.0]
def change
create_table :imports do |t|
t.integer :account_id, null: false
t.integer :type, null: false
t.boolean :approved
t.timestamps
end
end
end