Sha256: d3ecd6e269d7abc3fd480530628647ae6419990997449a5210e09a67e2f10917
Contents?: true
Size: 425 Bytes
Versions: 83
Compression:
Stored size: 425 Bytes
Contents
class CreatePandaPalOrganizations < PandaPal::MiscHelper::MigrationClass def change create_table :panda_pal_organizations do |t| t.string :name t.string :key t.string :secret t.string :canvas_account_id t.text :settings t.timestamps null: false end add_index :panda_pal_organizations, :name, unique: true add_index :panda_pal_organizations, :key, unique: true end end
Version data entries
83 entries across 83 versions & 1 rubygems