Skip to content

ststeiger/Cheezburger-BDSM

 
 

Repository files navigation

Cheezburger Better Database Schema Manager - Cheezburger BDSM

Cheezburger BDSM is a way to easily manage schema versioning and migrations.

Features

  • Schema Versioning
  • Simple Schema Description via XML
  • Use Custom SQL for Special Cases

Getting Started Screencast

Example XML Schema File

<?xml version="1.0" encoding="utf-8"?>
<schema xmlns="http://schemas.icanhascheezburger.com/db" version="52">
  <tables>
	<table name="Category">
	  <callback method="FillCategories" type="Mine.Utility.Schema.Populators, MineCore" />
	  <columns>
		<column name="CategoryId" type="int" isIdentity="true" />
		<column name="CategoryName" type="varchar" length="50" nullable="true" />
		<column name="Rank" type="int" nullable="true"/>
		<column name="DisplayTemplateGallery" type="bit" default="0"/>
	  </columns>
	  <indexes>
		<index name="PK_Category" type="PrimaryKey" columns="CategoryId" />
	  </indexes>
	</table>
  </tables>
</schema>

About

Cheezburger Better Database Schema Manager

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 62.1%
  • PowerShell 35.5%
  • Pascal 2.3%
  • Batchfile 0.1%